diff options
author | ManeraKai <manerakai@protonmail.com> | 2022-05-21 18:02:57 +0300 |
---|---|---|
committer | ManeraKai <manerakai@protonmail.com> | 2022-05-21 18:02:57 +0300 |
commit | acb72ef1c8bfe6788dde7ee06ea3b85e7d670ba5 (patch) | |
tree | 0a1287f9027cfd7c7b25cd7c5c0097fb12142c46 /src/pages/options/translate | |
parent | Fixed buttons in the general tab (diff) | |
download | libredirect-acb72ef1c8bfe6788dde7ee06ea3b85e7d670ba5.zip |
Fixing things and refining design
Diffstat (limited to 'src/pages/options/translate')
-rw-r--r-- | src/pages/options/translate/translate.html | 6 | ||||
-rw-r--r-- | src/pages/options/translate/translate.pug | 5 |
2 files changed, 9 insertions, 2 deletions
diff --git a/src/pages/options/translate/translate.html b/src/pages/options/translate/translate.html index c62ea5a6..879917bd 100644 --- a/src/pages/options/translate/translate.html +++ b/src/pages/options/translate/translate.html @@ -5,7 +5,7 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="icon" type="image/x-icon" href="../../../assets/images/libredirect.svg"> <link href="../../stylesheets/styles.css" rel="stylesheet"> - <title>General</title> + <title>Translate</title> </head> </html> <script type="module" src="../../../assets/javascripts/localise.js"></script> @@ -56,6 +56,10 @@ </section> <section class="option-block"> <div class="some-block option-block"> + <h1>Translate</h1> + </div> + <hr> + <div class="some-block option-block"> <h4 data-localise="__MSG_enable__">Enable</h4> <input id="disable-simplyTranslate" type="checkbox"> </div> diff --git a/src/pages/options/translate/translate.pug b/src/pages/options/translate/translate.pug index 42afcdf1..a1689e29 100644 --- a/src/pages/options/translate/translate.pug +++ b/src/pages/options/translate/translate.pug @@ -1,7 +1,7 @@ doctype html html(lang="en") include ../../widgets/head.pug - title General + title Translate script(type="module" src="../../../assets/javascripts/localise.js") body.option(dir="auto") include ../../widgets/links.pug @@ -9,6 +9,9 @@ body.option(dir="auto") section.option-block .some-block.option-block + h1 Translate + hr + .some-block.option-block h4(data-localise="__MSG_enable__") Enable input#disable-simplyTranslate(type="checkbox") |