diff options
author | Sergey Ponomarev <stokito@gmail.com> | 2024-04-27 22:32:46 +0300 |
---|---|---|
committer | Sergey Ponomarev <stokito@gmail.com> | 2024-04-30 11:59:25 +0300 |
commit | c7ab66ed7299a0fd449a6dd86b223cbbf6669f6a (patch) | |
tree | 4aa8a0ffbfe43ac305adc8fd0dff4d1e80a5871b /applications/luci-app-banip/htdocs/luci-static/resources | |
parent | 8242f1f3cacb03fc96b09aca62f406cf88bd3d38 (diff) |
luci-app-banip: reuse Disable instead of 0 (disable)
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
Diffstat (limited to 'applications/luci-app-banip/htdocs/luci-static/resources')
-rw-r--r-- | applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js | 2 |
1 files changed, 1 insertions, 1 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 19543fe216..33dd43cb36 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 @@ -574,7 +574,7 @@ return view.extend({ o.rmempty = true; o = s.taboption('adv_log', form.ListValue, 'ban_loglimit', _('Log Limit'), _('Parse only the last stated number of log entries for suspicious events. To disable the log monitor at all set it to \'0\'.')); - o.value('0', _('0 (disable)')); + o.value('0', _('Disable')); o.value('50', '50'); o.value('100', '100'); o.value('250', '250'); |