about summary refs log tree commit diff stats
path: root/src/pages
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/options/index.pug1
-rw-r--r--src/pages/options/widgets/services.pug2
-rw-r--r--src/pages/widgets/links.pug2
-rw-r--r--src/pages/widgets/switches.pug2
4 files changed, 3 insertions, 4 deletions
diff --git a/src/pages/options/index.pug b/src/pages/options/index.pug
index 12b2d2f3..4e19b087 100644
--- a/src/pages/options/index.pug
+++ b/src/pages/options/index.pug
@@ -6,6 +6,5 @@ html(id="elementToShowWithJavaScript" lang="en")
         div#pages
             include /src/pages/options/widgets/general
             include /src/pages/options/widgets/services
-            include /src/pages/options/widgets/about
     script(type="module" src="./index.js")
     
\ No newline at end of file
diff --git a/src/pages/options/widgets/services.pug b/src/pages/options/widgets/services.pug
index 79d20535..257ffd7c 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 data-localise=`__MSG_${service}__`)=services[service].name
+                a(target="_blank" href=services[service].url)=services[service].name
 
         hr
 
diff --git a/src/pages/widgets/links.pug b/src/pages/widgets/links.pug
index 2421a24a..253177f9 100644
--- a/src/pages/widgets/links.pug
+++ b/src/pages/widgets/links.pug
@@ -12,7 +12,7 @@ section(class="links" id="links")
                     img(class='light' src=`/assets/images/${key}-icon-light.svg`)
                 else
                     img(src=`/assets/images/${key}-icon.${services[key].imageType}`)
-                span(data-localise="__MSG_"+key+"__")=services[key].name
+                span=services[key].name
 
     div(class="title")
         a(target="_blank" href="https://libredirect.github.io")
diff --git a/src/pages/widgets/switches.pug b/src/pages/widgets/switches.pug
index 2dfad676..580a25dc 100644
--- a/src/pages/widgets/switches.pug
+++ b/src/pages/widgets/switches.pug
@@ -6,5 +6,5 @@ each val, service in services
                 img(class='light' src=`/assets/images/${service}-icon-light.svg`)
             else
                 img(src=`/assets/images/${service}-icon.${services[service].imageType}`)
-            h4(data-localise="__MSG_"+service+"__")=services[service].name
+            h4=services[service].name
         input(class=service + "-enabled" type="checkbox")
\ No newline at end of file