diff options
author | Dirk Brenken <dev@brenken.org> | 2022-02-07 23:08:46 +0100 |
---|---|---|
committer | Dirk Brenken <dev@brenken.org> | 2022-02-07 23:08:46 +0100 |
commit | 2ab828f5bf4e80f5d1cc16712df6e04b58b6eaaa (patch) | |
tree | e0ca59d401b55049f77a12798dd2c9935b0832c5 /applications/luci-app-adblock/htdocs/luci-static/resources/view | |
parent | 4fc3cd8e42ff9245f028c521307fa45e6a0c76af (diff) |
luci-app-adblock: small fixes
* fix #5677
* fix 'flush cache' wording
* sync translations
Signed-off-by: Dirk Brenken <dev@brenken.org>
Diffstat (limited to 'applications/luci-app-adblock/htdocs/luci-static/resources/view')
-rw-r--r-- | applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js index 9c29a284f8..2b58961f0b 100644 --- a/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js +++ b/applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js @@ -343,6 +343,7 @@ return view.extend({ o.depends('adb_safesearch', '1'); o.value('google'); o.value('bing'); + o.value('duckduckgo'); o.value('yandex'); o.value('youtube'); o.value('pixabay'); @@ -457,7 +458,7 @@ return view.extend({ o.placeholder = 'example.com'; o.rmempty = true; - o = s.taboption('adv_dns', form.Flag, 'adb_dnsflush', _('Flush DNS Cache'), _('Flush the DNS Cache before adblock processing as well.')); + o = s.taboption('adv_dns', form.Flag, 'adb_dnsflush', _('Flush DNS Cache'), _('Empty the DNS cache before adblock processing starts to reduce the memory consumption.')); o.rmempty = true; o = s.taboption('adv_dns', form.Flag, 'adb_dnsallow', _('Disable DNS Allow'), _('Disable selective DNS whitelisting (RPZ-PASSTHRU).')); |