diff options
author | Stan Grishin <stangri@melmac.ca> | 2024-01-20 17:09:08 +0000 |
---|---|---|
committer | Stan Grishin <stangri@melmac.ca> | 2024-01-20 17:11:57 +0000 |
commit | 126443aad5c29a393b48505372a11a1fc51a4722 (patch) | |
tree | 332f1efe0daafe93639ba36924958d9419c80e9e /applications/luci-app-adblock-fast/htdocs/luci-static | |
parent | f7ef1424661ea3663e9d4d233a213ae82674b58d (diff) |
luci-app-adblock-fast: remove unnecessary translation calls
Thank you @hnyman!
Signed-off-by: Stan Grishin <stangri@melmac.ca>
Diffstat (limited to 'applications/luci-app-adblock-fast/htdocs/luci-static')
-rw-r--r-- | applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js b/applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js index 7b0d93ab9f..e625106483 100644 --- a/applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js +++ b/applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js @@ -57,6 +57,7 @@ return view.extend({ status = new adb.status(); m = new form.Map(pkg.Name, _("AdBlock-Fast - Configuration")); + s1 = m.section(form.NamedSection, "config", pkg.Name); s1.tab("tab_basic", _("Basic Configuration")); s1.tab("tab_advanced", _("Advanced Configuration")); @@ -238,7 +239,7 @@ return view.extend({ key = element[".name"]; description = element[".name"]; } - o.value(key, _("%s").format(description)); + o.value(key, description); }); o.depends("dnsmasq_instance_option", "+"); o.retain = true; @@ -301,7 +302,7 @@ return view.extend({ key = element[".name"]; description = element[".name"]; } - o.value(key, _("%s").format(description)); + o.value(key, description); }); o.depends("smartdns_instance_option", "+"); o.retain = true; |