diff options
author | ManeraKai <manerakai@protonmail.com> | 2023-01-30 15:46:10 +0300 |
---|---|---|
committer | ManeraKai <manerakai@protonmail.com> | 2023-01-30 15:46:10 +0300 |
commit | 21e87a6412b4dac679846884af16f744bc152eca (patch) | |
tree | 77b1d67e150fb77a1c5b19dee8ee22e6dad6d255 /src/pages/options/widgets | |
parent | Updated screenshots (diff) | |
download | libredirect-21e87a6412b4dac679846884af16f744bc152eca.zip |
Fixed locales and other typing stuff
Diffstat (limited to 'src/pages/options/widgets')
-rw-r--r-- | src/pages/options/widgets/about.pug | 25 | ||||
-rw-r--r-- | src/pages/options/widgets/general.pug | 6 | ||||
-rw-r--r-- | src/pages/options/widgets/services.pug | 10 |
3 files changed, 8 insertions, 33 deletions
diff --git a/src/pages/options/widgets/about.pug b/src/pages/options/widgets/about.pug deleted file mode 100644 index 64d88501..00000000 --- a/src/pages/options/widgets/about.pug +++ /dev/null @@ -1,25 +0,0 @@ -section(class="option-block" id="about_page") - div(class="some-block option-block") - h1 - a(target="_blank" data-localise="__MSG_about__" href="https://libredirect.github.io") About - hr - div(class="about") - div(class="some-block option-block") - h4 Donate: ♥️ - h4 - a(href="https://libredirect.github.io/donate" target="_blank") https://libredirect.github.io/donate - - div(class="some-block option-block") - h4 FAQ: - h4 - a(href="https://libredirect.github.io/faq" target="_blank") https://libredirect.github.io/faq - - div(class="some-block option-block") - h4 Docs: - h4 - a(href="https://libredirect.github.io/docs" target="_blank") https://libredirect.github.io/docs - - div(class="some-block option-block") - h4 Source Code: - h4 - a(href="https://libredirect.github.io/source_code" target="_blank") https://libredirect.github.io/source_code \ No newline at end of file diff --git a/src/pages/options/widgets/general.pug b/src/pages/options/widgets/general.pug index 8a3f1859..eafd3e79 100644 --- a/src/pages/options/widgets/general.pug +++ b/src/pages/options/widgets/general.pug @@ -6,12 +6,12 @@ section(class="option-block" id="general_page") div(class="some-block option-block") h4(data-localise="__MSG_theme__") Theme select#theme - option(value="detect" data-localise="__MSG_detect__") Detect + option(value="detect" data-localise="__MSG_auto__") Auto option(value="light" data-localise="__MSG_light__") Light option(value="dark" data-localise="__MSG_dark__") Dark div(class="some-block option-block") - h4(data-localise="__MSG_exclude_from_redirecting_") Excluded from redirecting + h4(data-localise="__MSG_excludeFromRedirecting__") Excluded from redirecting form(id="custom-exceptions-instance-form") div(class="some-block option-block") @@ -52,6 +52,6 @@ section(class="option-block" id="general_page") svg(xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor") path(d="M12,5V2L8,6l4,4V7c3.31,0,6,2.69,6,6c0,2.97-2.17,5.43-5,5.91v2.02c3.95-0.49,7-3.85,7-7.93C20,8.58,16.42,5,12,5z") path(d="M6,13c0-1.65,0.67-3.15,1.76-4.24L6.34,7.34C4.9,8.79,4,10.79,4,13c0,4.08,3.05,7.44,7,7.93v-2.02 C8.17,18.43,6,15.97,6,13z") - x(localise="__MSG_resetSettings__") Reset Settings + x(data-localise="__MSG_resetSettings__") Reset Settings script(type="module" src="./widgets/general.js") \ No newline at end of file diff --git a/src/pages/options/widgets/services.pug b/src/pages/options/widgets/services.pug index b5f330cc..79d20535 100644 --- a/src/pages/options/widgets/services.pug +++ b/src/pages/options/widgets/services.pug @@ -2,7 +2,7 @@ each val, service in services section(class="option-block" id=service+"_page") div(class="some-block option-block") h1 - a(target="_blank" href=services[service].url)=services[service].name + a(target="_blank" href=services[service].url data-localise=`__MSG_${service}__`)=services[service].name hr @@ -13,7 +13,7 @@ each val, service in services div(id=service+"-opacity") div(class="some-block option-block") - h4(data-localise="__MSG_show_in_popup__") Show in Popup + h4(data-localise="__MSG_showInPopup__") Show in popup input(id=service type="checkbox") if Object.keys(services[service].frontends).length> 1 @@ -40,9 +40,9 @@ each val, service in services each val, frontend in services[service].frontends if services[service].frontends[frontend].instanceList - div(id=frontend) - div(class="some-block option-block") - h4(data-localise="__MSG_instances__") Add your favorite instances + div(id=frontend dir="ltr") + div(dir="auto" class="some-block option-block") + h4(data-localise="__MSG_addYourFavoriteInstances__") Add your favorite instances form(class="custom-instance-form") div(class="some-block option-block") |