diff options
author | Sergey Ponomarev <stokito@gmail.com> | 2024-04-27 22:54:40 +0300 |
---|---|---|
committer | Sergey Ponomarev <stokito@gmail.com> | 2024-04-30 12:00:49 +0300 |
commit | 40b85a2d5e992a422d6c0d50142bca852fc7f292 (patch) | |
tree | ab0d3fe4a42e69a836c510de293f30f87283b0e1 /applications/luci-app-banip/htdocs/luci-static | |
parent | c7ab66ed7299a0fd449a6dd86b223cbbf6669f6a (diff) |
luci-app-banip: restore Countries translation
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
Diffstat (limited to 'applications/luci-app-banip/htdocs/luci-static')
-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 33dd43cb36..89025d951e 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 @@ -662,7 +662,7 @@ return view.extend({ if (result[2]) { countries = result[2].trim().split('\n'); - o = s.taboption('feeds', form.MultiValue, 'ban_country', _('Countries (RIR)')); + o = s.taboption('feeds', form.MultiValue, 'ban_country', _('Countries') + ' (<abbr title="Regional Internet Registries">RIR</abbr>)'); for (let i = 0; i < countries.length; i++) { try { ccode = countries[i].match(/^(\w+)\t/)[1].trim(); |