diff options
author | Dirk Brenken <dev@brenken.org> | 2023-05-04 12:24:33 +0200 |
---|---|---|
committer | Dirk Brenken <dev@brenken.org> | 2023-05-04 12:24:33 +0200 |
commit | 0632f167d8008e5d013418644596e79249826362 (patch) | |
tree | 0b19b1487d0c12bdeadb1ee92e48c262254c4bb5 /applications/luci-app-banip/htdocs/luci-static/resources/view/banip | |
parent | d28e83751040b2beaa3d802eb9fa349ee49efc58 (diff) |
luci-app-banip: sync with banIP 0.8.4-4
* small changes
* sync translations
Signed-off-by: Dirk Brenken <dev@brenken.org>
Diffstat (limited to 'applications/luci-app-banip/htdocs/luci-static/resources/view/banip')
-rw-r--r-- | applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js index 3eba0c23e0..edd26e7641 100644 --- a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js +++ b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js @@ -575,7 +575,7 @@ return view.extend({ o.optional = true; o.rmempty = true; - o = s.taboption('feeds', form.Flag, 'ban_autoallowlist', _('Auto Allowlist'), _('Automatically transfers uplink IPs to the banIP allowlist.')); + o = s.taboption('feeds', form.Flag, 'ban_autoallowlist', _('Auto Allowlist'), _('Automatically add resolved domains and uplink IPs to the local banIP allowlist.')); o.default = 1 o.rmempty = false; @@ -587,7 +587,7 @@ return view.extend({ o.rmempty = true; o.depends('ban_autoallowlist', '1'); - o = s.taboption('feeds', form.Flag, 'ban_autoblocklist', _('Auto Blocklist'), _('Automatically transfers suspicious IPs to the banIP blocklist.')); + o = s.taboption('feeds', form.Flag, 'ban_autoblocklist', _('Auto Blocklist'), _('Automatically add resolved domains and suspicious IPs to the local banIP blocklist.')); o.default = 1 o.rmempty = false; |