From d683fa7ffb1cb8e16c183bfdaf3663057ef8e89c Mon Sep 17 00:00:00 2001 From: Dirk Brenken Date: Wed, 8 Mar 2023 22:22:04 +0100 Subject: [PATCH] luci-app-banip: sync with banIP 0.8.2 * add a warning popup to Allow-/Blocklist if the filesize >= 100 kb * support the new 'ban_reportelements' option * sync translations Signed-off-by: Dirk Brenken --- .../resources/view/banip/allowlist.js | 10 +- .../resources/view/banip/blocklist.js | 10 +- .../resources/view/banip/overview.js | 4 + .../resources/view/banip/setreport.js | 2 +- applications/luci-app-banip/po/ar/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/bg/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/bn_BD/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/ca/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/cs/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/da/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/de/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/el/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/en/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/es/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/fi/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/fr/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/he/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/hi/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/hu/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/it/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/ja/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/ko/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/mr/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/ms/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/nb_NO/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/nl/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/pl/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/pt/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/pt_BR/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/ro/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/ru/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/sk/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/sv/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/sw/banip.po | 120 ++++++++++-------- .../luci-app-banip/po/templates/banip.pot | 120 ++++++++++-------- applications/luci-app-banip/po/tr/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/uk/banip.po | 120 ++++++++++-------- applications/luci-app-banip/po/vi/banip.po | 120 ++++++++++-------- .../luci-app-banip/po/zh_Hans/banip.po | 120 ++++++++++-------- .../luci-app-banip/po/zh_Hant/banip.po | 120 ++++++++++-------- .../usr/share/rpcd/acl.d/luci-app-banip.json | 2 +- 41 files changed, 2506 insertions(+), 1842 deletions(-) diff --git a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js index 792642d6bd..07175a4fce 100644 --- a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js +++ b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js @@ -5,7 +5,10 @@ return view.extend({ load: function () { - return L.resolveDefault(fs.read_direct('/etc/banip/banip.allowlist'), ''); + return Promise.all([ + L.resolveDefault(fs.stat('/etc/banip/banip.allowlist'), {}), + L.resolveDefault(fs.read_direct('/etc/banip/banip.allowlist'), '') + ]); }, handleSave: function (ev) { var value = ((document.querySelector('textarea').value || '').trim().toLowerCase().replace(/\r\n/g, '\n')) + '\n'; @@ -18,6 +21,9 @@ return view.extend({ }); }, render: function (allowlist) { + if (allowlist[0].size >= 100000) { + ui.addNotification(null, E('p', _('The allowlist is too big, unable to save modifications.')), 'error'); + } return E([ E('p', {}, _('This is the local banIP allowlist that will permit certain MAC/IP/CIDR addresses.
\ @@ -28,7 +34,7 @@ return view.extend({ 'spellcheck': 'false', 'wrap': 'off', 'rows': 25 - }, [allowlist != null ? allowlist : '']) + }, [allowlist[1] != null ? allowlist[1] : '']) ) ]); }, diff --git a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js index 888a189ed0..75560fd6e1 100644 --- a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js +++ b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js @@ -5,7 +5,10 @@ return view.extend({ load: function () { - return L.resolveDefault(fs.read_direct('/etc/banip/banip.blocklist'), ''); + return Promise.all([ + L.resolveDefault(fs.stat('/etc/banip/banip.blocklist'), {}), + L.resolveDefault(fs.read_direct('/etc/banip/banip.blocklist'), '') + ]); }, handleSave: function (ev) { var value = ((document.querySelector('textarea').value || '').trim().toLowerCase().replace(/\r\n/g, '\n')) + '\n'; @@ -18,6 +21,9 @@ return view.extend({ }); }, render: function (blocklist) { + if (blocklist[0].size >= 100000) { + ui.addNotification(null, E('p', _('The blocklist is too big, unable to save modifications.')), 'error'); + } return E([ E('p', {}, _('This is the local banIP blocklist that will prevent certain MAC/IP/CIDR addresses.
\ @@ -28,7 +34,7 @@ return view.extend({ 'spellcheck': 'false', 'wrap': 'off', 'rows': 25 - }, [blocklist != null ? blocklist : '']) + }, [blocklist[1] != null ? blocklist[1] : '']) ) ]); }, 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 aa10f7e03b..29791e75c3 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 @@ -362,6 +362,10 @@ return view.extend({ o.placeholder = '/tmp/banIP-report'; o.rmempty = true; + o = s.taboption('advanced', form.Flag, 'ban_reportelements', _('Report Elements'), _('List Set elements in the report, disable this to speed up the report significantly.')); + o.default = 1 + o.optional = true; + o = s.taboption('advanced', form.Flag, 'ban_fetchinsecure', _('Download Insecure'), _('Don\'t check SSL server certificates during download.')); o.rmempty = true; diff --git a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js index 1371d6d06b..2d39586435 100644 --- a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js +++ b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js @@ -132,7 +132,7 @@ return view.extend({ load: function () { return Promise.all([ L.resolveDefault(fs.exec_direct('/etc/init.d/banip', ['report', 'json']), '{}'), - L.resolveDefault(fs.exec_direct('/usr/sbin/nft', ['-tj', 'list', 'table', 'inet', 'banIP']), '{}') + L.resolveDefault(fs.exec_direct('/usr/sbin/nft', ['-tj', 'list', 'ruleset']), '{}') ]); }, diff --git a/applications/luci-app-banip/po/ar/banip.po b/applications/luci-app-banip/po/ar/banip.po index ed20d28916..5821163cbe 100644 --- a/applications/luci-app-banip/po/ar/banip.po +++ b/applications/luci-app-banip/po/ar/banip.po @@ -15,31 +15,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -59,11 +59,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -71,7 +71,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "" @@ -100,21 +100,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -122,11 +122,11 @@ msgstr "" msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -150,7 +150,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -165,7 +165,7 @@ msgstr "" msgid "Cancel" msgstr "إلغاء" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -182,7 +182,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "" @@ -202,11 +202,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "" @@ -218,15 +218,15 @@ msgstr "تنزيل المعلمات" msgid "Download Utility" msgstr "تحميل الأداة" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "ملف تعريف البريد الإلكتروني" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "عنوان مستقبل البريد الإلكتروني" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "عنوان مرسل البريد الإلكتروني" @@ -234,7 +234,7 @@ msgstr "عنوان مرسل البريد الإلكتروني" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "موضوع البريد الإلكتروني" @@ -274,11 +274,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -332,7 +332,7 @@ msgstr "معلومة" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -348,15 +348,15 @@ msgstr "" msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -364,6 +364,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -372,7 +378,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -380,7 +386,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "" @@ -388,7 +394,7 @@ msgstr "" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "" @@ -446,7 +452,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -461,7 +467,7 @@ msgstr "" msgid "Overview" msgstr "نظرة عامة" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" @@ -469,11 +475,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -491,11 +497,15 @@ msgstr "" msgid "Report Directory" msgstr "دليل التقارير" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "إعادة تشغيل" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -536,7 +546,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "" @@ -565,7 +575,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -607,7 +617,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -627,14 +645,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -651,7 +669,7 @@ msgstr "" msgid "Timestamp" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "" @@ -659,8 +677,8 @@ msgstr "" msgid "Trigger Delay" msgstr "تأخير الزناد" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -676,7 +694,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -684,7 +702,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/bg/banip.po b/applications/luci-app-banip/po/bg/banip.po index e9608e8dcb..03d480f696 100644 --- a/applications/luci-app-banip/po/bg/banip.po +++ b/applications/luci-app-banip/po/bg/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "ASNs" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "Автоматично засичане" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -164,7 +164,7 @@ msgstr "" msgid "Cancel" msgstr "Отмени" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -181,7 +181,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "Държави" @@ -201,11 +201,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "Не проверявай SSL сертификати по време на сваляне." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "Сваляй несигурно" @@ -217,15 +217,15 @@ msgstr "Параметри за теглене" msgid "Download Utility" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "E-Mail Профил" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "E-Mail Изпращач" @@ -233,7 +233,7 @@ msgstr "E-Mail Изпращач" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "E-Mail Тема" @@ -273,11 +273,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -331,7 +331,7 @@ msgstr "Информация" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -347,15 +347,15 @@ msgstr "" msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -363,6 +363,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -371,7 +377,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -379,7 +385,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "" @@ -387,7 +393,7 @@ msgstr "" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "" @@ -445,7 +451,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -460,7 +466,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" @@ -468,11 +474,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -490,11 +496,15 @@ msgstr "" msgid "Report Directory" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -535,7 +545,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "" @@ -564,7 +574,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -606,7 +616,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -626,14 +644,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -650,7 +668,7 @@ msgstr "" msgid "Timestamp" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "" @@ -658,8 +676,8 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -675,7 +693,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -683,7 +701,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/bn_BD/banip.po b/applications/luci-app-banip/po/bn_BD/banip.po index f8d03bd74a..3ed1666d82 100644 --- a/applications/luci-app-banip/po/bn_BD/banip.po +++ b/applications/luci-app-banip/po/bn_BD/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -164,7 +164,7 @@ msgstr "" msgid "Cancel" msgstr "বাতিল করুন" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -181,7 +181,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "" @@ -201,11 +201,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "" @@ -217,15 +217,15 @@ msgstr "" msgid "Download Utility" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "" @@ -233,7 +233,7 @@ msgstr "" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "" @@ -273,11 +273,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -331,7 +331,7 @@ msgstr "" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -347,15 +347,15 @@ msgstr "" msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -363,6 +363,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -371,7 +377,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -379,7 +385,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "" @@ -387,7 +393,7 @@ msgstr "" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "" @@ -445,7 +451,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -460,7 +466,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" @@ -468,11 +474,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -490,11 +496,15 @@ msgstr "" msgid "Report Directory" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -535,7 +545,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "" @@ -564,7 +574,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -606,7 +616,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -626,14 +644,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -650,7 +668,7 @@ msgstr "" msgid "Timestamp" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "" @@ -658,8 +676,8 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -675,7 +693,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -683,7 +701,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/ca/banip.po b/applications/luci-app-banip/po/ca/banip.po index 5aec859af0..aeee7a358e 100644 --- a/applications/luci-app-banip/po/ca/banip.po +++ b/applications/luci-app-banip/po/ca/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -164,7 +164,7 @@ msgstr "" msgid "Cancel" msgstr "Cancel•lar" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -181,7 +181,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "" @@ -201,11 +201,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "" @@ -217,15 +217,15 @@ msgstr "Paràmetres de descàrrega" msgid "Download Utility" msgstr "Utilitat de baixades" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "Adreça del destinatari de correu" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "" @@ -233,7 +233,7 @@ msgstr "" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "" @@ -273,11 +273,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -331,7 +331,7 @@ msgstr "Informació" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -347,15 +347,15 @@ msgstr "" msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -363,6 +363,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -371,7 +377,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -379,7 +385,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "" @@ -387,7 +393,7 @@ msgstr "" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "" @@ -445,7 +451,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -460,7 +466,7 @@ msgstr "" msgid "Overview" msgstr "Visió de conjunt" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" @@ -468,11 +474,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -490,11 +496,15 @@ msgstr "Torna a carregar" msgid "Report Directory" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "Reiniciar" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -535,7 +545,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "" @@ -564,7 +574,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -606,7 +616,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -626,14 +644,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -650,7 +668,7 @@ msgstr "" msgid "Timestamp" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "" @@ -658,8 +676,8 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -675,7 +693,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -683,7 +701,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/cs/banip.po b/applications/luci-app-banip/po/cs/banip.po index 2e3434c238..d9f7138f11 100644 --- a/applications/luci-app-banip/po/cs/banip.po +++ b/applications/luci-app-banip/po/cs/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -164,7 +164,7 @@ msgstr "" msgid "Cancel" msgstr "Zrušit" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -181,7 +181,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "" @@ -201,11 +201,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "" @@ -217,15 +217,15 @@ msgstr "" msgid "Download Utility" msgstr "Nástroj pro stahování" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "" @@ -233,7 +233,7 @@ msgstr "" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "" @@ -273,11 +273,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -331,7 +331,7 @@ msgstr "" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -347,15 +347,15 @@ msgstr "" msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -363,6 +363,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -371,7 +377,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -379,7 +385,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "" @@ -387,7 +393,7 @@ msgstr "" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "" @@ -445,7 +451,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -460,7 +466,7 @@ msgstr "" msgid "Overview" msgstr "Přehled" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" @@ -468,11 +474,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -490,11 +496,15 @@ msgstr "Znovu načíst" msgid "Report Directory" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -535,7 +545,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "" @@ -564,7 +574,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -606,7 +616,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -626,14 +644,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -650,7 +668,7 @@ msgstr "" msgid "Timestamp" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "" @@ -658,8 +676,8 @@ msgstr "" msgid "Trigger Delay" msgstr "Prodleva spuštění" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -675,7 +693,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -683,7 +701,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/da/banip.po b/applications/luci-app-banip/po/da/banip.po index 7c0c395b2f..ad5e0acb97 100644 --- a/applications/luci-app-banip/po/da/banip.po +++ b/applications/luci-app-banip/po/da/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "ASN'er" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "Automatisk detektering" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -164,7 +164,7 @@ msgstr "" msgid "Cancel" msgstr "Annuller" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -181,7 +181,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "Lande" @@ -201,11 +201,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "Kontroller ikke SSL-servercertifikater under download." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "Download usikker" @@ -217,15 +217,15 @@ msgstr "Download parametre" msgid "Download Utility" msgstr "Download hjælpeprogram" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "E-mail profil" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "Modtagerens e-mailadresse" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "E-mail afsenderadresse" @@ -233,7 +233,7 @@ msgstr "E-mail afsenderadresse" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "E-mail emne" @@ -273,11 +273,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -331,7 +331,7 @@ msgstr "Information" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -347,15 +347,15 @@ msgstr "Mindste prioritet" msgid "Less Priority" msgstr "Mindre prioritet" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -363,6 +363,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -372,7 +378,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -380,7 +386,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "Loggrænse" @@ -388,7 +394,7 @@ msgstr "Loggrænse" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "Log Vilkår" @@ -446,7 +452,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "Normal prioritet (standard)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -461,7 +467,7 @@ msgstr "" msgid "Overview" msgstr "Oversigt" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" "Analyser kun det sidste angivne antal logposter for mistænkelige hændelser." @@ -470,11 +476,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "Profil, der anvendes af \"msmtp\" til banIP-meddelelses-e-mails." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -492,11 +498,15 @@ msgstr "" msgid "Report Directory" msgstr "Rapportmappe" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "Genstart" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -537,7 +547,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "Afsenderadresse for banIP-meddelelses-e-mails." @@ -566,7 +576,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -608,7 +618,15 @@ msgstr "Målmappe for IPSet-relaterede rapportfiler." msgid "Target directory for compressed source list backups." msgstr "Målmappe for komprimerede sikkerhedskopier af kildelister." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -628,14 +646,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -652,7 +670,7 @@ msgstr "" msgid "Timestamp" msgstr "Tidsstempel" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "Emne for banIP-meddelelses-e-mails." @@ -660,8 +678,8 @@ msgstr "Emne for banIP-meddelelses-e-mails." msgid "Trigger Delay" msgstr "Udløserforsinkelse" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -677,7 +695,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -685,7 +703,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/de/banip.po b/applications/luci-app-banip/po/de/banip.po index b4a918ad50..48fc2f6815 100644 --- a/applications/luci-app-banip/po/de/banip.po +++ b/applications/luci-app-banip/po/de/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "Autonome Systemnummern" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "Automatische Erkennung" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -164,7 +164,7 @@ msgstr "" msgid "Cancel" msgstr "Abbrechen" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -181,7 +181,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "Länder" @@ -201,11 +201,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "Während des Downloads keine SSL-Serverzertifikate überprüfen." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "Unsicher herunterladen" @@ -217,15 +217,15 @@ msgstr "Download Parameter" msgid "Download Utility" msgstr "Download-Werkzeug" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "E-Mail-Profil" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "E-Mail Empfängeradresse" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "E-Mail Absenderadresse" @@ -233,7 +233,7 @@ msgstr "E-Mail Absenderadresse" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "E-Mail-Thema" @@ -273,11 +273,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -331,7 +331,7 @@ msgstr "Informationen" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -347,15 +347,15 @@ msgstr "Niedrigste Priorität" msgid "Less Priority" msgstr "Niedrige Priorität" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -363,6 +363,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -373,7 +379,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -381,7 +387,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "Protokollbegrenzung" @@ -389,7 +395,7 @@ msgstr "Protokollbegrenzung" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "Protokollbedingungen" @@ -447,7 +453,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "Normale Priorität (Voreinstellung)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -462,7 +468,7 @@ msgstr "" msgid "Overview" msgstr "Übersicht" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" "Nur die zuletzt angegebene Anzahl der Protokolleinträge auf verdächtige " @@ -472,11 +478,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "Von 'msmtp' verwendetes Profil für banIP-Benachrichtigungs-E-Mails." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -494,11 +500,15 @@ msgstr "Neu laden" msgid "Report Directory" msgstr "Report-Verzeichnis" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "Neustart" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -539,7 +549,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "Absenderadresse für banIP-Benachrichtigungs-E-Mails." @@ -568,7 +578,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -610,7 +620,15 @@ msgstr "Zielverzeichnis für IPSet-bezogene Berichtsdateien." msgid "Target directory for compressed source list backups." msgstr "Zielverzeichnis für komprimierte Quelllistensicherungen." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -630,14 +648,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -654,7 +672,7 @@ msgstr "" msgid "Timestamp" msgstr "Zeitstempel" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "Betreff für banIP-Benachrichtigungs-E-Mails." @@ -662,8 +680,8 @@ msgstr "Betreff für banIP-Benachrichtigungs-E-Mails." msgid "Trigger Delay" msgstr "Verzögerung der Trigger-Bedingung" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -679,7 +697,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -687,7 +705,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/el/banip.po b/applications/luci-app-banip/po/el/banip.po index c8a95ce1d1..da2b0a742b 100644 --- a/applications/luci-app-banip/po/el/banip.po +++ b/applications/luci-app-banip/po/el/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -164,7 +164,7 @@ msgstr "" msgid "Cancel" msgstr "Ακύρωση" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -181,7 +181,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "" @@ -201,11 +201,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "" @@ -217,15 +217,15 @@ msgstr "" msgid "Download Utility" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "" @@ -233,7 +233,7 @@ msgstr "" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "" @@ -273,11 +273,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -331,7 +331,7 @@ msgstr "" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -347,15 +347,15 @@ msgstr "" msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -363,6 +363,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -371,7 +377,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -379,7 +385,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "" @@ -387,7 +393,7 @@ msgstr "" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "" @@ -445,7 +451,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -460,7 +466,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" @@ -468,11 +474,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -490,11 +496,15 @@ msgstr "" msgid "Report Directory" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -535,7 +545,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "" @@ -564,7 +574,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -606,7 +616,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -626,14 +644,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -650,7 +668,7 @@ msgstr "" msgid "Timestamp" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "" @@ -658,8 +676,8 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -675,7 +693,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -683,7 +701,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/en/banip.po b/applications/luci-app-banip/po/en/banip.po index 15b778dd74..9f193983ee 100644 --- a/applications/luci-app-banip/po/en/banip.po +++ b/applications/luci-app-banip/po/en/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -164,7 +164,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -181,7 +181,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "" @@ -201,11 +201,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "" @@ -217,15 +217,15 @@ msgstr "" msgid "Download Utility" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "" @@ -233,7 +233,7 @@ msgstr "" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "" @@ -273,11 +273,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -331,7 +331,7 @@ msgstr "" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -347,15 +347,15 @@ msgstr "" msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -363,6 +363,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -371,7 +377,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -379,7 +385,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "" @@ -387,7 +393,7 @@ msgstr "" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "" @@ -445,7 +451,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -460,7 +466,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" @@ -468,11 +474,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -490,11 +496,15 @@ msgstr "" msgid "Report Directory" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -535,7 +545,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "" @@ -564,7 +574,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -606,7 +616,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -626,14 +644,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -650,7 +668,7 @@ msgstr "" msgid "Timestamp" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "" @@ -658,8 +676,8 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -675,7 +693,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -683,7 +701,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/es/banip.po b/applications/luci-app-banip/po/es/banip.po index 268a277996..1c13a1b941 100644 --- a/applications/luci-app-banip/po/es/banip.po +++ b/applications/luci-app-banip/po/es/banip.po @@ -17,31 +17,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -53,7 +53,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -61,11 +61,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "ASNs" @@ -102,21 +102,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -124,11 +124,11 @@ msgstr "" msgid "Auto Detection" msgstr "Detección automática" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -144,7 +144,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -152,7 +152,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -167,7 +167,7 @@ msgstr "" msgid "Cancel" msgstr "Cancelar" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -184,7 +184,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "Países" @@ -204,11 +204,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "No verificar los certificados SSL del servidor durante la descarga." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "Descarga insegura" @@ -220,15 +220,15 @@ msgstr "Descargar parámetros" msgid "Download Utility" msgstr "Utilidad de descarga" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "Perfil de correo electrónico" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "Dirección del destinatario de correo electrónico" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "Dirección del remitente de correo electrónico" @@ -236,7 +236,7 @@ msgstr "Dirección del remitente de correo electrónico" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "Tema del correo electrónico" @@ -276,11 +276,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -334,7 +334,7 @@ msgstr "Información" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -350,15 +350,15 @@ msgstr "Prioridad mínima" msgid "Less Priority" msgstr "Menos prioridad" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -366,6 +366,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -375,7 +381,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -383,7 +389,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "Límite de registro" @@ -391,7 +397,7 @@ msgstr "Límite de registro" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "Términos de registro" @@ -449,7 +455,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "Prioridad normal (predeterminado)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -464,7 +470,7 @@ msgstr "" msgid "Overview" msgstr "Visión general" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" "Analice solo el último número indicado de entradas de registro para detectar " @@ -474,13 +480,13 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" "Perfil utilizado por 'msmtp' para correos electrónicos de notificación de " "banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -498,11 +504,15 @@ msgstr "Recargar" msgid "Report Directory" msgstr "Informar directorio" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "Reiniciar" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -543,7 +553,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "" "Dirección del remitente para correos electrónicos de notificación de banIP." @@ -573,7 +583,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -618,7 +628,15 @@ msgstr "" "Directorio de destino para copias de seguridad de listas de origen " "comprimidas." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -638,14 +656,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -662,7 +680,7 @@ msgstr "" msgid "Timestamp" msgstr "Marca de tiempo" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "Tema para correos electrónicos de notificación de banIP." @@ -670,8 +688,8 @@ msgstr "Tema para correos electrónicos de notificación de banIP." msgid "Trigger Delay" msgstr "Retraso de disparo" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -687,7 +705,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -695,7 +713,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/fi/banip.po b/applications/luci-app-banip/po/fi/banip.po index 8c177c6dad..f50aaa61c0 100644 --- a/applications/luci-app-banip/po/fi/banip.po +++ b/applications/luci-app-banip/po/fi/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "ASN:t" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "Automaattinen tunnistus" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -164,7 +164,7 @@ msgstr "" msgid "Cancel" msgstr "Peruuta" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -181,7 +181,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "Maat" @@ -201,11 +201,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "Älä tarkista SSL-palvelinvarmenteita latauksen aikana." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "" @@ -217,15 +217,15 @@ msgstr "" msgid "Download Utility" msgstr "Lataustyökalu" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "" @@ -233,7 +233,7 @@ msgstr "" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "" @@ -273,11 +273,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -331,7 +331,7 @@ msgstr "" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -347,15 +347,15 @@ msgstr "" msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -363,6 +363,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -371,7 +377,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -379,7 +385,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "" @@ -387,7 +393,7 @@ msgstr "" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "" @@ -445,7 +451,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -460,7 +466,7 @@ msgstr "" msgid "Overview" msgstr "Yleiskatsaus" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" @@ -468,11 +474,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -490,11 +496,15 @@ msgstr "" msgid "Report Directory" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "Käynnistä uudelleen" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -535,7 +545,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "" @@ -564,7 +574,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -606,7 +616,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -626,14 +644,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -650,7 +668,7 @@ msgstr "" msgid "Timestamp" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "" @@ -658,8 +676,8 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -675,7 +693,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -683,7 +701,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/fr/banip.po b/applications/luci-app-banip/po/fr/banip.po index d7392565cb..e367f86e53 100644 --- a/applications/luci-app-banip/po/fr/banip.po +++ b/applications/luci-app-banip/po/fr/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "Les ASN" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "Détection automatique" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -164,7 +164,7 @@ msgstr "" msgid "Cancel" msgstr "Annuler" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -181,7 +181,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "Pays" @@ -201,12 +201,12 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "" "Ne pas vérifier les certificats SSL du serveur pendant le téléchargement." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "Téléchargement non sécurisé" @@ -218,15 +218,15 @@ msgstr "Paramètres de téléchargement" msgid "Download Utility" msgstr "Télécharger l'utilitaire" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "Courriel du profil" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "Adresse courriel du destinataire" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "Adresse courriel de l'expéditeur" @@ -234,7 +234,7 @@ msgstr "Adresse courriel de l'expéditeur" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "Objet du courriel" @@ -274,11 +274,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -332,7 +332,7 @@ msgstr "Information" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -348,15 +348,15 @@ msgstr "Priorité minimale" msgid "Less Priority" msgstr "Moins prioritaire" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -364,6 +364,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -374,7 +380,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -382,7 +388,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "Limite de journalisation" @@ -390,7 +396,7 @@ msgstr "Limite de journalisation" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "Conditions de journalisation" @@ -448,7 +454,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "Priorité normale (par défaut)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -463,7 +469,7 @@ msgstr "" msgid "Overview" msgstr "Aperçu" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" "Analyser uniquement le dernier nombre indiqué d'entrées de journal pour les " @@ -473,13 +479,13 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" "Profil utilisé par 'msmtp' pour les courriel de notification de bannissement " "IP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -497,11 +503,15 @@ msgstr "Recharger" msgid "Report Directory" msgstr "Répertoire des rapports" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "Redémarrer" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -542,7 +552,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "" "Adresse de l'expéditeur des courriels de notification de bannissement IP." @@ -572,7 +582,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -615,7 +625,15 @@ msgid "Target directory for compressed source list backups." msgstr "" "Répertoire cible pour les sauvegardes compressées de la liste des sources." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -635,14 +653,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -659,7 +677,7 @@ msgstr "" msgid "Timestamp" msgstr "Horodatage" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "Rubrique pour les courriels de notification banIP." @@ -667,8 +685,8 @@ msgstr "Rubrique pour les courriels de notification banIP." msgid "Trigger Delay" msgstr "Délai de déclenchement" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -684,7 +702,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -692,7 +710,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/he/banip.po b/applications/luci-app-banip/po/he/banip.po index b92dbd02bf..ab270db232 100644 --- a/applications/luci-app-banip/po/he/banip.po +++ b/applications/luci-app-banip/po/he/banip.po @@ -15,31 +15,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -59,11 +59,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -71,7 +71,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "" @@ -100,21 +100,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -122,11 +122,11 @@ msgstr "" msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -150,7 +150,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -165,7 +165,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -182,7 +182,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "" @@ -202,11 +202,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "" @@ -218,15 +218,15 @@ msgstr "" msgid "Download Utility" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "" @@ -234,7 +234,7 @@ msgstr "" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "" @@ -274,11 +274,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -332,7 +332,7 @@ msgstr "" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -348,15 +348,15 @@ msgstr "" msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -364,6 +364,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -372,7 +378,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -380,7 +386,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "" @@ -388,7 +394,7 @@ msgstr "" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "" @@ -446,7 +452,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -461,7 +467,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" @@ -469,11 +475,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -491,11 +497,15 @@ msgstr "" msgid "Report Directory" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -536,7 +546,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "" @@ -565,7 +575,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -607,7 +617,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -627,14 +645,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -651,7 +669,7 @@ msgstr "" msgid "Timestamp" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "" @@ -659,8 +677,8 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -676,7 +694,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -684,7 +702,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/hi/banip.po b/applications/luci-app-banip/po/hi/banip.po index fe146b0d7b..32fc187c86 100644 --- a/applications/luci-app-banip/po/hi/banip.po +++ b/applications/luci-app-banip/po/hi/banip.po @@ -8,31 +8,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -44,7 +44,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -52,11 +52,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -64,7 +64,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "" @@ -93,21 +93,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -115,11 +115,11 @@ msgstr "" msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -135,7 +135,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -143,7 +143,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -158,7 +158,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -175,7 +175,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "" @@ -195,11 +195,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "" @@ -211,15 +211,15 @@ msgstr "" msgid "Download Utility" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "" @@ -227,7 +227,7 @@ msgstr "" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "" @@ -267,11 +267,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -341,15 +341,15 @@ msgstr "" msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -357,6 +357,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -365,7 +371,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -373,7 +379,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "" @@ -381,7 +387,7 @@ msgstr "" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "" @@ -439,7 +445,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -454,7 +460,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" @@ -462,11 +468,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -484,11 +490,15 @@ msgstr "" msgid "Report Directory" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -529,7 +539,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "" @@ -558,7 +568,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -600,7 +610,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -620,14 +638,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -644,7 +662,7 @@ msgstr "" msgid "Timestamp" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "" @@ -652,8 +670,8 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -669,7 +687,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -677,7 +695,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/hu/banip.po b/applications/luci-app-banip/po/hu/banip.po index 2ebd39db77..79e5467222 100644 --- a/applications/luci-app-banip/po/hu/banip.po +++ b/applications/luci-app-banip/po/hu/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "AS számok" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "Automatikus észlelés" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -164,7 +164,7 @@ msgstr "" msgid "Cancel" msgstr "Mégse" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -181,7 +181,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "Országok" @@ -201,11 +201,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "" @@ -217,15 +217,15 @@ msgstr "" msgid "Download Utility" msgstr "Letöltési segédprogram" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "E-Mail profil" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "E-Mail küldő cím" @@ -233,7 +233,7 @@ msgstr "E-Mail küldő cím" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #, fuzzy msgid "E-Mail Topic" msgstr "E-Mail téma" @@ -274,11 +274,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -332,7 +332,7 @@ msgstr "Információ" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -348,15 +348,15 @@ msgstr "Legkisebb prioritás" msgid "Less Priority" msgstr "Kisebb prioritás" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -364,6 +364,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -372,7 +378,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -380,7 +386,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "" @@ -388,7 +394,7 @@ msgstr "" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "" @@ -446,7 +452,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "Közepes prioritás (alapértelmezett)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -461,7 +467,7 @@ msgstr "" msgid "Overview" msgstr "Áttekintés" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" @@ -469,11 +475,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -491,11 +497,15 @@ msgstr "Újratöltés" msgid "Report Directory" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "Újraindítás" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -536,7 +546,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "" @@ -565,7 +575,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -607,7 +617,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -627,14 +645,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -651,7 +669,7 @@ msgstr "" msgid "Timestamp" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "" @@ -659,8 +677,8 @@ msgstr "" msgid "Trigger Delay" msgstr "Aktiváló késleltetése" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -676,7 +694,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -684,7 +702,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/it/banip.po b/applications/luci-app-banip/po/it/banip.po index eacdc18469..a63c380f07 100644 --- a/applications/luci-app-banip/po/it/banip.po +++ b/applications/luci-app-banip/po/it/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -164,7 +164,7 @@ msgstr "" msgid "Cancel" msgstr "Annulla" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -181,7 +181,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "" @@ -201,11 +201,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "Non controllare i certificati del server SSL durante il download." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "Download non sicuro" @@ -217,15 +217,15 @@ msgstr "Parametri di download" msgid "Download Utility" msgstr "Utilità di download" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "Profilo e-mail" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "Indirizzo e-mail destinatario" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "Indirizzo e-mail mittente" @@ -233,7 +233,7 @@ msgstr "Indirizzo e-mail mittente" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "Oggetto e-mail" @@ -273,11 +273,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -331,7 +331,7 @@ msgstr "Informazioni" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -347,15 +347,15 @@ msgstr "" msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -363,6 +363,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -371,7 +377,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -379,7 +385,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "" @@ -387,7 +393,7 @@ msgstr "" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "" @@ -445,7 +451,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -460,7 +466,7 @@ msgstr "" msgid "Overview" msgstr "Riepilogo" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" @@ -468,11 +474,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -490,11 +496,15 @@ msgstr "Aggiorna" msgid "Report Directory" msgstr "Directory dei report" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "Riavvia" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -535,7 +545,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "" @@ -564,7 +574,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -606,7 +616,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -626,14 +644,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -650,7 +668,7 @@ msgstr "" msgid "Timestamp" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "" @@ -658,8 +676,8 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -675,7 +693,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -683,7 +701,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/ja/banip.po b/applications/luci-app-banip/po/ja/banip.po index 617c67c1f5..c71163d31a 100644 --- a/applications/luci-app-banip/po/ja/banip.po +++ b/applications/luci-app-banip/po/ja/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "自動検出" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -164,7 +164,7 @@ msgstr "" msgid "Cancel" msgstr "キャンセル" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -181,7 +181,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "国" @@ -201,11 +201,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "" @@ -217,15 +217,15 @@ msgstr "ダウンロードのパラメータ" msgid "Download Utility" msgstr "ダウンロードユーティリティ" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "Eメールプロファイル" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "Eメール受信アドレス" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "Eメール送信者アドレス" @@ -233,7 +233,7 @@ msgstr "Eメール送信者アドレス" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "Eメールトピック" @@ -273,11 +273,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -331,7 +331,7 @@ msgstr "情報" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -347,15 +347,15 @@ msgstr "最低の優先度" msgid "Less Priority" msgstr "低い優先度" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -363,6 +363,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -371,7 +377,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -379,7 +385,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "ログ制限" @@ -387,7 +393,7 @@ msgstr "ログ制限" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "" @@ -445,7 +451,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "通常の優先度 (デフォルト)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -460,7 +466,7 @@ msgstr "" msgid "Overview" msgstr "概要" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" @@ -468,11 +474,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -490,11 +496,15 @@ msgstr "リロード" msgid "Report Directory" msgstr "レポート ディレクトリ" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "再起動" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -535,7 +545,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "" @@ -564,7 +574,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -606,7 +616,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -626,14 +644,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -650,7 +668,7 @@ msgstr "" msgid "Timestamp" msgstr "タイムスタンプ" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "" @@ -658,8 +676,8 @@ msgstr "" msgid "Trigger Delay" msgstr "トリガ遅延" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -675,7 +693,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -683,7 +701,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/ko/banip.po b/applications/luci-app-banip/po/ko/banip.po index eebb946564..872c09b5bf 100644 --- a/applications/luci-app-banip/po/ko/banip.po +++ b/applications/luci-app-banip/po/ko/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -150,7 +150,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -165,7 +165,7 @@ msgstr "" msgid "Cancel" msgstr "취소" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -182,7 +182,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "" @@ -202,11 +202,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "" @@ -218,15 +218,15 @@ msgstr "" msgid "Download Utility" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "" @@ -234,7 +234,7 @@ msgstr "" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "" @@ -274,11 +274,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -332,7 +332,7 @@ msgstr "정보" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -348,15 +348,15 @@ msgstr "" msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -364,6 +364,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -372,7 +378,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -380,7 +386,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "" @@ -388,7 +394,7 @@ msgstr "" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "" @@ -446,7 +452,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -461,7 +467,7 @@ msgstr "" msgid "Overview" msgstr "개요" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" @@ -469,11 +475,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -491,11 +497,15 @@ msgstr "" msgid "Report Directory" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -536,7 +546,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "" @@ -565,7 +575,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -607,7 +617,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -627,14 +645,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -651,7 +669,7 @@ msgstr "" msgid "Timestamp" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "" @@ -659,8 +677,8 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -676,7 +694,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -684,7 +702,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/mr/banip.po b/applications/luci-app-banip/po/mr/banip.po index 3285a07f15..a095ad89ed 100644 --- a/applications/luci-app-banip/po/mr/banip.po +++ b/applications/luci-app-banip/po/mr/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -164,7 +164,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -181,7 +181,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "" @@ -201,11 +201,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "" @@ -217,15 +217,15 @@ msgstr "" msgid "Download Utility" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "" @@ -233,7 +233,7 @@ msgstr "" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "" @@ -273,11 +273,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -331,7 +331,7 @@ msgstr "" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -347,15 +347,15 @@ msgstr "" msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -363,6 +363,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -371,7 +377,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -379,7 +385,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "" @@ -387,7 +393,7 @@ msgstr "" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "" @@ -445,7 +451,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -460,7 +466,7 @@ msgstr "" msgid "Overview" msgstr "आढावा" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" @@ -468,11 +474,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -490,11 +496,15 @@ msgstr "रीलोड करा" msgid "Report Directory" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -535,7 +545,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "" @@ -564,7 +574,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -606,7 +616,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -626,14 +644,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -650,7 +668,7 @@ msgstr "" msgid "Timestamp" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "" @@ -658,8 +676,8 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -675,7 +693,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -683,7 +701,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/ms/banip.po b/applications/luci-app-banip/po/ms/banip.po index 3b156673c5..04ea3f4f45 100644 --- a/applications/luci-app-banip/po/ms/banip.po +++ b/applications/luci-app-banip/po/ms/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -164,7 +164,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -181,7 +181,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "" @@ -201,11 +201,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "" @@ -217,15 +217,15 @@ msgstr "" msgid "Download Utility" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "" @@ -233,7 +233,7 @@ msgstr "" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "" @@ -273,11 +273,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -331,7 +331,7 @@ msgstr "" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -347,15 +347,15 @@ msgstr "" msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -363,6 +363,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -371,7 +377,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -379,7 +385,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "" @@ -387,7 +393,7 @@ msgstr "" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "" @@ -445,7 +451,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -460,7 +466,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" @@ -468,11 +474,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -490,11 +496,15 @@ msgstr "" msgid "Report Directory" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -535,7 +545,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "" @@ -564,7 +574,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -606,7 +616,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -626,14 +644,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -650,7 +668,7 @@ msgstr "" msgid "Timestamp" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "" @@ -658,8 +676,8 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -675,7 +693,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -683,7 +701,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/nb_NO/banip.po b/applications/luci-app-banip/po/nb_NO/banip.po index 79363ca165..86870be8d5 100644 --- a/applications/luci-app-banip/po/nb_NO/banip.po +++ b/applications/luci-app-banip/po/nb_NO/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -164,7 +164,7 @@ msgstr "" msgid "Cancel" msgstr "Avbryt" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -181,7 +181,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "" @@ -201,11 +201,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "" @@ -217,15 +217,15 @@ msgstr "Nedlastingsparametre" msgid "Download Utility" msgstr "Nedlastingsverktøy" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "E-postprofil" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "E-postsenderadresse" @@ -233,7 +233,7 @@ msgstr "E-postsenderadresse" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "E-postemne" @@ -273,11 +273,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -331,7 +331,7 @@ msgstr "Info" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -347,15 +347,15 @@ msgstr "" msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -363,6 +363,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -371,7 +377,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -379,7 +385,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "" @@ -387,7 +393,7 @@ msgstr "" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "" @@ -445,7 +451,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -460,7 +466,7 @@ msgstr "" msgid "Overview" msgstr "Oversikt" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" @@ -468,11 +474,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -490,11 +496,15 @@ msgstr "" msgid "Report Directory" msgstr "Rapportmappe" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "Omstart" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -536,7 +546,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "" @@ -565,7 +575,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -607,7 +617,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -627,14 +645,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -651,7 +669,7 @@ msgstr "" msgid "Timestamp" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "" @@ -659,8 +677,8 @@ msgstr "" msgid "Trigger Delay" msgstr "Utløserforsinkelse" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -676,7 +694,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -684,7 +702,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/nl/banip.po b/applications/luci-app-banip/po/nl/banip.po index add39da26d..8e4840bc7b 100644 --- a/applications/luci-app-banip/po/nl/banip.po +++ b/applications/luci-app-banip/po/nl/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "ASN's" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "Autodetectie" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -164,7 +164,7 @@ msgstr "" msgid "Cancel" msgstr "Afbreken" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -181,7 +181,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "Landen" @@ -201,11 +201,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "Tijdens download niet de SSL server certificaten controleren." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "Onbeveiligd downloaden" @@ -217,15 +217,15 @@ msgstr "Parameters downloaden" msgid "Download Utility" msgstr "Download hulpprogramma" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "E-Mail profiel" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "E-Mail adres van ontvanger" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "E-Mail adres van verzender" @@ -233,7 +233,7 @@ msgstr "E-Mail adres van verzender" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "E-Mail onderwerp" @@ -273,11 +273,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -331,7 +331,7 @@ msgstr "Informatie" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -347,15 +347,15 @@ msgstr "Laagste prioriteit" msgid "Less Priority" msgstr "Lage prioriteit" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -363,6 +363,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "Lijst van beschikbare netwerkinterfaces die banIP starten." @@ -371,7 +377,7 @@ msgstr "Lijst van beschikbare netwerkinterfaces die banIP starten." msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -379,7 +385,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "Log limiet" @@ -387,7 +393,7 @@ msgstr "Log limiet" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #, fuzzy msgid "Log Terms" msgstr "Log termen (sleutelwoorden)" @@ -446,7 +452,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "Normale prioriteit (standaard)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -461,7 +467,7 @@ msgstr "" msgid "Overview" msgstr "Overzicht" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" "Laat alleen het aantal regels in de log zien van de verdachte gebeurtenissen." @@ -470,12 +476,12 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" "Profiel gebruikt voor 'msmtp' voor banIP E-Mail berichten/notificaties." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -493,11 +499,15 @@ msgstr "" msgid "Report Directory" msgstr "Rapportage directory" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "Herstart" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -540,7 +550,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "Afzender e-mailadres voor de banIP email meldingen." @@ -569,7 +579,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -611,7 +621,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -631,14 +649,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -655,7 +673,7 @@ msgstr "" msgid "Timestamp" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "" @@ -663,8 +681,8 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -680,7 +698,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -688,7 +706,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/pl/banip.po b/applications/luci-app-banip/po/pl/banip.po index cb533d91e2..8851a8eb39 100644 --- a/applications/luci-app-banip/po/pl/banip.po +++ b/applications/luci-app-banip/po/pl/banip.po @@ -15,31 +15,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -59,11 +59,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -71,7 +71,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "ASN-y" @@ -100,21 +100,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -122,11 +122,11 @@ msgstr "" msgid "Auto Detection" msgstr "Automatyczne wykrywanie" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -150,7 +150,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -165,7 +165,7 @@ msgstr "" msgid "Cancel" msgstr "Anuluj" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -182,7 +182,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "Kraje" @@ -202,11 +202,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "Nie sprawdzaj certyfikatów SSL serwera podczas pobierania." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "Niezabezpieczone pobieranie" @@ -218,15 +218,15 @@ msgstr "Parametry pobierania" msgid "Download Utility" msgstr "Narzędzie pobierania" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "Profil e-mail" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "Adres e-mail odbiorcy" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "Adres e-mail nadawcy" @@ -234,7 +234,7 @@ msgstr "Adres e-mail nadawcy" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "Temat e-mail" @@ -274,11 +274,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -332,7 +332,7 @@ msgstr "Informacje" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -348,15 +348,15 @@ msgstr "Najniższy priorytet" msgid "Less Priority" msgstr "Mniejszy priorytet" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -364,6 +364,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -373,7 +379,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -381,7 +387,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "Limit dziennika" @@ -389,7 +395,7 @@ msgstr "Limit dziennika" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "Warunki dziennika" @@ -447,7 +453,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "Normalny priorytet (domyślny)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -462,7 +468,7 @@ msgstr "" msgid "Overview" msgstr "Przegląd" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" "Analizuj tylko ostatnią podaną liczbę wpisów w dzienniku w poszukiwaniu " @@ -472,12 +478,12 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" "Profil używany przez \"msmtp\" dla wiadomości e-mail z powiadomieniem banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -495,11 +501,15 @@ msgstr "Przeładuj" msgid "Report Directory" msgstr "Katalog raportów" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "Restartuj" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -540,7 +550,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "Adres nadawcy wiadomości e-mail z powiadomieniem banIP." @@ -569,7 +579,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -611,7 +621,15 @@ msgstr "Katalog docelowy dla plików raportów związanych z IPSet." msgid "Target directory for compressed source list backups." msgstr "Katalog docelowy dla kopii zapasowych skompresowanej listy źródeł." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -631,14 +649,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -655,7 +673,7 @@ msgstr "" msgid "Timestamp" msgstr "Sygnatura czasowa" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "Temat dla wiadomości e-mail z powiadomieniem banIP." @@ -663,8 +681,8 @@ msgstr "Temat dla wiadomości e-mail z powiadomieniem banIP." msgid "Trigger Delay" msgstr "Opóźnienie wyzwalacza" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -680,7 +698,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -688,7 +706,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/pt/banip.po b/applications/luci-app-banip/po/pt/banip.po index 712e1c78a1..1ed5003292 100644 --- a/applications/luci-app-banip/po/pt/banip.po +++ b/applications/luci-app-banip/po/pt/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "ASNs" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "Deteção automática" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -164,7 +164,7 @@ msgstr "" msgid "Cancel" msgstr "Cancelar" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -181,7 +181,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "Países" @@ -201,11 +201,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "Não verificar os certificados de SSL do servidor durante a descarrega." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "Descarregar inseguro" @@ -217,15 +217,15 @@ msgstr "Parâmetros de Descarregamento" msgid "Download Utility" msgstr "Ferramenta para Descarregar" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "Perfil de e-mail" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "Endereço de e-mail do destinatário" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "Endereço de e-mail do remetente" @@ -233,7 +233,7 @@ msgstr "Endereço de e-mail do remetente" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "Assunto do e-mail" @@ -273,11 +273,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -331,7 +331,7 @@ msgstr "Informação" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -347,15 +347,15 @@ msgstr "Mínima Prioridade" msgid "Less Priority" msgstr "Menor Prioridade" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -363,6 +363,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -372,7 +378,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -380,7 +386,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "Limite do Registo" @@ -388,7 +394,7 @@ msgstr "Limite do Registo" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "Termos do registo" @@ -446,7 +452,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "Prioridade Normal (padrão)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -461,7 +467,7 @@ msgstr "" msgid "Overview" msgstr "Visão Geral" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" "Analise apenas o último número declarado das entradas de registo na busca " @@ -471,11 +477,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "O perfil usado pelo 'msmtp' para os e-mails de notificação do banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -493,11 +499,15 @@ msgstr "Recarregar" msgid "Report Directory" msgstr "Diretório de Relatórios" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "Reiniciar" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -538,7 +548,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "Endereço do remetente para os e-mails de notificação do banIP." @@ -567,7 +577,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -610,7 +620,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "O diretório de destino para os backups compactados da lista de origem." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -630,14 +648,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -654,7 +672,7 @@ msgstr "" msgid "Timestamp" msgstr "Marca de Tempo" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "Tópico para e-mails de notificação do banIP." @@ -662,8 +680,8 @@ msgstr "Tópico para e-mails de notificação do banIP." msgid "Trigger Delay" msgstr "Atraso do Gatilho" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -679,7 +697,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -687,7 +705,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/pt_BR/banip.po b/applications/luci-app-banip/po/pt_BR/banip.po index cf333e2118..81357193d0 100644 --- a/applications/luci-app-banip/po/pt_BR/banip.po +++ b/applications/luci-app-banip/po/pt_BR/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "ASNs" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "Detecção Automática" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -164,7 +164,7 @@ msgstr "" msgid "Cancel" msgstr "Cancelar" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -181,7 +181,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "Países" @@ -201,11 +201,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "Não verifique os certificados do servidor SSL durante o download." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "Download inseguro" @@ -217,15 +217,15 @@ msgstr "Parâmetros de Download" msgid "Download Utility" msgstr "Ferramenta para Baixar" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "E-Mail do Perfil" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "Endereço de E-Mail do Destinatário" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "Endereço de E-Mail do Remetente" @@ -233,7 +233,7 @@ msgstr "Endereço de E-Mail do Remetente" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "Assunto do E-Mail" @@ -273,11 +273,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -331,7 +331,7 @@ msgstr "Informações" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -347,15 +347,15 @@ msgstr "Mínima Prioridade" msgid "Less Priority" msgstr "Menor Prioridade" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -363,6 +363,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -372,7 +378,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -380,7 +386,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "Limite do Registro" @@ -388,7 +394,7 @@ msgstr "Limite do Registro" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "Termos do registro" @@ -446,7 +452,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "Prioridade Normal (padrão)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -461,7 +467,7 @@ msgstr "" msgid "Overview" msgstr "Visão geral" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" "Analise apenas o último número declarado das entradas de registro na busca " @@ -471,11 +477,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "O perfil usado pelo 'msmtp' para os e-mails de notificação do banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -493,11 +499,15 @@ msgstr "Recarregar" msgid "Report Directory" msgstr "Diretório do Relatório" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "Reiniciar" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -538,7 +548,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "Endereço do remetente para os e-mails de notificação do banIP." @@ -567,7 +577,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -610,7 +620,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "O diretório de destino para os backups compactados da lista de origem." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -630,14 +648,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -654,7 +672,7 @@ msgstr "" msgid "Timestamp" msgstr "Marca de Tempo" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "Tópico para e-mails de notificação do banIP." @@ -662,8 +680,8 @@ msgstr "Tópico para e-mails de notificação do banIP." msgid "Trigger Delay" msgstr "Gatilho de Atraso" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -679,7 +697,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -687,7 +705,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/ro/banip.po b/applications/luci-app-banip/po/ro/banip.po index 92119a7385..da2f7e9eb1 100644 --- a/applications/luci-app-banip/po/ro/banip.po +++ b/applications/luci-app-banip/po/ro/banip.po @@ -15,31 +15,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -59,11 +59,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -71,7 +71,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "ASNs" @@ -100,21 +100,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -122,11 +122,11 @@ msgstr "" msgid "Auto Detection" msgstr "Detecție automată" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -150,7 +150,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -165,7 +165,7 @@ msgstr "" msgid "Cancel" msgstr "Anulare" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -182,7 +182,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "Țări" @@ -202,11 +202,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "Nu verificați certificatele serverului SSL în timpul descărcării." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "Descărcați Insecure" @@ -218,15 +218,15 @@ msgstr "Parametrii de descărcare" msgid "Download Utility" msgstr "Utilitar descărcare" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "Profil de e-mail" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "Adresa de e-mail a destinatarului" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "Adresa expeditorului de e-mail" @@ -234,7 +234,7 @@ msgstr "Adresa expeditorului de e-mail" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "Subiect E-Mail" @@ -274,11 +274,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -332,7 +332,7 @@ msgstr "Informație" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -348,15 +348,15 @@ msgstr "Cea mai mică prioritate" msgid "Less Priority" msgstr "Prioritate mai mică" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -364,6 +364,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -373,7 +379,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -381,7 +387,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "Limita de jurnal" @@ -389,7 +395,7 @@ msgstr "Limita de jurnal" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "Termeni de jurnal" @@ -447,7 +453,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "Prioritate normală (implicită)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -462,7 +468,7 @@ msgstr "" msgid "Overview" msgstr "Prezentare generală" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" "Analizează numai ultimul număr declarat de intrări de jurnal pentru " @@ -472,12 +478,12 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" "Profilul utilizat de 'msmtp' pentru mesajele electronice de notificare banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -495,11 +501,15 @@ msgstr "" msgid "Report Directory" msgstr "Director de rapoarte" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "Reporniți" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -540,7 +550,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "Adresa expeditorului pentru e-mailurile de notificare banIP." @@ -569,7 +579,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -613,7 +623,15 @@ msgstr "" "Directorul de destinație pentru copiile de rezervă comprimate ale listei de " "surse." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -633,14 +651,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -657,7 +675,7 @@ msgstr "" msgid "Timestamp" msgstr "Înregistrarea timpului" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "Subiect pentru e-mailurile de notificare banIP." @@ -665,8 +683,8 @@ msgstr "Subiect pentru e-mailurile de notificare banIP." msgid "Trigger Delay" msgstr "Intârzierea declanșării" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -682,7 +700,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -690,7 +708,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/ru/banip.po b/applications/luci-app-banip/po/ru/banip.po index 43d10f1aa8..9d5e080770 100644 --- a/applications/luci-app-banip/po/ru/banip.po +++ b/applications/luci-app-banip/po/ru/banip.po @@ -15,31 +15,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -59,11 +59,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -71,7 +71,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "Автономные системы" @@ -100,21 +100,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -122,11 +122,11 @@ msgstr "" msgid "Auto Detection" msgstr "Автоопределение" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -150,7 +150,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -165,7 +165,7 @@ msgstr "" msgid "Cancel" msgstr "Отмена" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -182,7 +182,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "Страны" @@ -202,11 +202,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "Не проверять SSL сертификаты сервера во время загрузки." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "Небезопасная загрузка" @@ -218,15 +218,15 @@ msgstr "Параметры загрузки" msgid "Download Utility" msgstr "Утилита для загрузки" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "Профиль электронной почты" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "Адрес получателя" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "Адрес отправителя" @@ -234,7 +234,7 @@ msgstr "Адрес отправителя" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "Тема" @@ -274,11 +274,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -332,7 +332,7 @@ msgstr "Информация" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -348,15 +348,15 @@ msgstr "Наименьший приоритет" msgid "Less Priority" msgstr "Меньший приоритет" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -364,6 +364,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #, fuzzy msgid "List of available network interfaces to trigger the banIP start." @@ -373,7 +379,7 @@ msgstr "Список доступных сетевых интерфейсов з msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -381,7 +387,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "" @@ -389,7 +395,7 @@ msgstr "" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "" @@ -447,7 +453,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -462,7 +468,7 @@ msgstr "" msgid "Overview" msgstr "Обзор" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" @@ -470,11 +476,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -492,11 +498,15 @@ msgstr "Перезапустить" msgid "Report Directory" msgstr "Папка для отчётов" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "Перезапустить" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -537,7 +547,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "" @@ -566,7 +576,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -608,7 +618,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -628,14 +646,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -652,7 +670,7 @@ msgstr "" msgid "Timestamp" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "" @@ -660,8 +678,8 @@ msgstr "" msgid "Trigger Delay" msgstr "Задержка запуска" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -677,7 +695,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -685,7 +703,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/sk/banip.po b/applications/luci-app-banip/po/sk/banip.po index 7c750b7618..81555a7c17 100644 --- a/applications/luci-app-banip/po/sk/banip.po +++ b/applications/luci-app-banip/po/sk/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -164,7 +164,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -181,7 +181,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "" @@ -201,11 +201,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "" @@ -217,15 +217,15 @@ msgstr "" msgid "Download Utility" msgstr "Nástroj na sťahovanie" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "" @@ -233,7 +233,7 @@ msgstr "" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "" @@ -273,11 +273,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -331,7 +331,7 @@ msgstr "" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -347,15 +347,15 @@ msgstr "" msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -363,6 +363,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -371,7 +377,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -379,7 +385,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "" @@ -387,7 +393,7 @@ msgstr "" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "" @@ -445,7 +451,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -460,7 +466,7 @@ msgstr "" msgid "Overview" msgstr "Prehľad" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" @@ -468,11 +474,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -490,11 +496,15 @@ msgstr "" msgid "Report Directory" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -535,7 +545,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "" @@ -564,7 +574,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -606,7 +616,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -626,14 +644,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -650,7 +668,7 @@ msgstr "" msgid "Timestamp" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "" @@ -658,8 +676,8 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -675,7 +693,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -683,7 +701,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/sv/banip.po b/applications/luci-app-banip/po/sv/banip.po index 90d97b1e47..9d3e44a075 100644 --- a/applications/luci-app-banip/po/sv/banip.po +++ b/applications/luci-app-banip/po/sv/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "ASN:er" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "Automatisk detektering" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -164,7 +164,7 @@ msgstr "" msgid "Cancel" msgstr "Avbryt" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -181,7 +181,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "" @@ -201,11 +201,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "Ladda ner osäkert" @@ -217,15 +217,15 @@ msgstr "Ladda ner parametrar" msgid "Download Utility" msgstr "Ladda ner verktyget" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "E-postprofil" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "Avsändaradress för e-post" @@ -233,7 +233,7 @@ msgstr "Avsändaradress för e-post" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "E-postämne" @@ -273,11 +273,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -331,7 +331,7 @@ msgstr "" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -347,15 +347,15 @@ msgstr "" msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -363,6 +363,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -371,7 +377,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -379,7 +385,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "" @@ -387,7 +393,7 @@ msgstr "" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "" @@ -445,7 +451,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -460,7 +466,7 @@ msgstr "" msgid "Overview" msgstr "Överblick" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" @@ -468,11 +474,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -490,11 +496,15 @@ msgstr "Ladda om" msgid "Report Directory" msgstr "Rapportkatalog" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "Starta om" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -535,7 +545,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "" @@ -564,7 +574,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -606,7 +616,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -626,14 +644,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -650,7 +668,7 @@ msgstr "" msgid "Timestamp" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "" @@ -658,8 +676,8 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -675,7 +693,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -683,7 +701,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/sw/banip.po b/applications/luci-app-banip/po/sw/banip.po index ec3b9a15b4..2d1ea34743 100644 --- a/applications/luci-app-banip/po/sw/banip.po +++ b/applications/luci-app-banip/po/sw/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -164,7 +164,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -181,7 +181,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "" @@ -201,11 +201,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "" @@ -217,15 +217,15 @@ msgstr "" msgid "Download Utility" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "" @@ -233,7 +233,7 @@ msgstr "" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "" @@ -273,11 +273,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -331,7 +331,7 @@ msgstr "" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -347,15 +347,15 @@ msgstr "" msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -363,6 +363,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -371,7 +377,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -379,7 +385,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "" @@ -387,7 +393,7 @@ msgstr "" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "" @@ -445,7 +451,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -460,7 +466,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" @@ -468,11 +474,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -490,11 +496,15 @@ msgstr "" msgid "Report Directory" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -535,7 +545,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "" @@ -564,7 +574,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -606,7 +616,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -626,14 +644,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -650,7 +668,7 @@ msgstr "" msgid "Timestamp" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "" @@ -658,8 +676,8 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -675,7 +693,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -683,7 +701,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/templates/banip.pot b/applications/luci-app-banip/po/templates/banip.pot index 009800b482..c69fb645ea 100644 --- a/applications/luci-app-banip/po/templates/banip.pot +++ b/applications/luci-app-banip/po/templates/banip.pot @@ -5,31 +5,31 @@ msgstr "Content-Type: text/plain; charset=UTF-8" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -41,7 +41,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -49,11 +49,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -61,7 +61,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "" @@ -90,21 +90,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -112,11 +112,11 @@ msgstr "" msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -132,7 +132,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -140,7 +140,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -155,7 +155,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -172,7 +172,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "" @@ -192,11 +192,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "" @@ -208,15 +208,15 @@ msgstr "" msgid "Download Utility" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "" @@ -224,7 +224,7 @@ msgstr "" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "" @@ -264,11 +264,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -322,7 +322,7 @@ msgstr "" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -338,15 +338,15 @@ msgstr "" msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -354,6 +354,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -362,7 +368,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -370,7 +376,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "" @@ -378,7 +384,7 @@ msgstr "" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "" @@ -436,7 +442,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -451,7 +457,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" @@ -459,11 +465,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -481,11 +487,15 @@ msgstr "" msgid "Report Directory" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -526,7 +536,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "" @@ -555,7 +565,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -597,7 +607,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -617,14 +635,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -641,7 +659,7 @@ msgstr "" msgid "Timestamp" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "" @@ -649,8 +667,8 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -666,7 +684,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -674,7 +692,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/tr/banip.po b/applications/luci-app-banip/po/tr/banip.po index b9f1919955..525ed1bcf2 100644 --- a/applications/luci-app-banip/po/tr/banip.po +++ b/applications/luci-app-banip/po/tr/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "ASN'ler" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "Otomatik Algılama" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -164,7 +164,7 @@ msgstr "" msgid "Cancel" msgstr "İptal" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -181,7 +181,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "Ülkeler" @@ -201,11 +201,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "İndirme sırasında SSL sunucu sertifikalarını kontrol etme." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "Güvensiz İndir" @@ -217,15 +217,15 @@ msgstr "İndirme Parametreleri" msgid "Download Utility" msgstr "İndirme Aracı" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "E-Posta Profili" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "E-Posta Alıcı Adresi" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "E-Posta Gönderen Adresi" @@ -233,7 +233,7 @@ msgstr "E-Posta Gönderen Adresi" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "E-Posta Konusu" @@ -273,11 +273,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -331,7 +331,7 @@ msgstr "Bilgi" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -347,15 +347,15 @@ msgstr "En Az Öncelik" msgid "Less Priority" msgstr "Daha Az Öncelik" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -363,6 +363,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "BanIP başlangıcını tetiklemek için mevcut ağ arayüzlerinin listesi." @@ -371,7 +377,7 @@ msgstr "BanIP başlangıcını tetiklemek için mevcut ağ arayüzlerinin listes msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -379,7 +385,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "Günlük Sınırı" @@ -387,7 +393,7 @@ msgstr "Günlük Sınırı" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "Günlük Şartları" @@ -445,7 +451,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "Normal Öncelik (varsayılan)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -460,7 +466,7 @@ msgstr "" msgid "Overview" msgstr "Genel bakış" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" "Şüpheli olaylar için yalnızca son belirtilen günlük girişi sayısını " @@ -470,11 +476,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "BanIP bildirim e-postaları için 'msmtp' tarafından kullanılan profil." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -492,11 +498,15 @@ msgstr "Yeniden yükle" msgid "Report Directory" msgstr "Rapor Dizini" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "Yeniden başlat" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -537,7 +547,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "BanIP bildirim e-postaları için gönderen adresi." @@ -566,7 +576,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -608,7 +618,15 @@ msgstr "IPSet ile ilgili rapor dosyaları için hedef dizin." msgid "Target directory for compressed source list backups." msgstr "Sıkıştırılmış kaynak listesi yedeklemeleri için hedef dizin." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -628,14 +646,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -652,7 +670,7 @@ msgstr "" msgid "Timestamp" msgstr "Zaman damgası" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "BanIP bildirim e-postaları için konu." @@ -660,8 +678,8 @@ msgstr "BanIP bildirim e-postaları için konu." msgid "Trigger Delay" msgstr "Tetikleme Gecikmesi" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -677,7 +695,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -685,7 +703,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/uk/banip.po b/applications/luci-app-banip/po/uk/banip.po index 487dfdfc00..fbed634fbd 100644 --- a/applications/luci-app-banip/po/uk/banip.po +++ b/applications/luci-app-banip/po/uk/banip.po @@ -15,31 +15,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -59,11 +59,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -71,7 +71,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "" @@ -100,21 +100,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -122,11 +122,11 @@ msgstr "" msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -150,7 +150,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -165,7 +165,7 @@ msgstr "" msgid "Cancel" msgstr "Скасувати" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -182,7 +182,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "" @@ -202,11 +202,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "Не перевіряти SSL-сертифікати сервера під час завантаження." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "Завантажувати небезпечним шляхом" @@ -218,15 +218,15 @@ msgstr "Параметри завантаження" msgid "Download Utility" msgstr "Утиліта для завантаження" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "E-Mail профіль" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "E-Mail адреса отримувача" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "E-Mail адреса відправника" @@ -234,7 +234,7 @@ msgstr "E-Mail адреса відправника" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "Тема" @@ -274,11 +274,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -332,7 +332,7 @@ msgstr "" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -348,15 +348,15 @@ msgstr "" msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -364,6 +364,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -372,7 +378,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -380,7 +386,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "" @@ -388,7 +394,7 @@ msgstr "" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "" @@ -446,7 +452,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -461,7 +467,7 @@ msgstr "" msgid "Overview" msgstr "Огляд" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" @@ -469,11 +475,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -491,11 +497,15 @@ msgstr "" msgid "Report Directory" msgstr "Тека для звітів" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "Перезапустити" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -536,7 +546,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "" @@ -565,7 +575,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -607,7 +617,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -627,14 +645,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -651,7 +669,7 @@ msgstr "" msgid "Timestamp" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "" @@ -659,8 +677,8 @@ msgstr "" msgid "Trigger Delay" msgstr "Затримка запуску" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -676,7 +694,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -684,7 +702,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/vi/banip.po b/applications/luci-app-banip/po/vi/banip.po index 1548622a28..c48f428d3d 100644 --- a/applications/luci-app-banip/po/vi/banip.po +++ b/applications/luci-app-banip/po/vi/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -164,7 +164,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -181,7 +181,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "" @@ -201,11 +201,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "" @@ -217,15 +217,15 @@ msgstr "" msgid "Download Utility" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "" @@ -233,7 +233,7 @@ msgstr "" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "" @@ -273,11 +273,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -331,7 +331,7 @@ msgstr "" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -347,15 +347,15 @@ msgstr "" msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -363,6 +363,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "" @@ -371,7 +377,7 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -379,7 +385,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "" @@ -387,7 +393,7 @@ msgstr "" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "" @@ -445,7 +451,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -460,7 +466,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" @@ -468,11 +474,11 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -490,11 +496,15 @@ msgstr "" msgid "Report Directory" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -535,7 +545,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "" @@ -564,7 +574,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -606,7 +616,15 @@ msgstr "" msgid "Target directory for compressed source list backups." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -626,14 +644,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -650,7 +668,7 @@ msgstr "" msgid "Timestamp" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "" @@ -658,8 +676,8 @@ msgstr "" msgid "Trigger Delay" msgstr "Kích hoạt độ trễ" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -676,7 +694,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -684,7 +702,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/zh_Hans/banip.po b/applications/luci-app-banip/po/zh_Hans/banip.po index b7f17ae7fb..95b17da007 100644 --- a/applications/luci-app-banip/po/zh_Hans/banip.po +++ b/applications/luci-app-banip/po/zh_Hans/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "平均取样数" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "自动检测" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -164,7 +164,7 @@ msgstr "" msgid "Cancel" msgstr "取消" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -181,7 +181,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "地区" @@ -201,11 +201,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "下载期间不检查 SSL 服务器证书。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "下载不安全" @@ -217,15 +217,15 @@ msgstr "下载参数" msgid "Download Utility" msgstr "下载工具" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "电子邮件概要" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "电子邮件收件人地址" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "电子邮件发件人地址" @@ -233,7 +233,7 @@ msgstr "电子邮件发件人地址" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "电子邮件主题" @@ -273,11 +273,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -331,7 +331,7 @@ msgstr "信息" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -347,15 +347,15 @@ msgstr "最低优先级" msgid "Less Priority" msgstr "较低优先级" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -363,6 +363,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "触发 banIP 启动的可用网络接口列表。" @@ -371,7 +377,7 @@ msgstr "触发 banIP 启动的可用网络接口列表。" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -379,7 +385,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "日志限制" @@ -387,7 +393,7 @@ msgstr "日志限制" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "日志项" @@ -445,7 +451,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "正常优先级(默认)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -460,7 +466,7 @@ msgstr "" msgid "Overview" msgstr "概览" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "仅解析最后声明的可疑事件的日志条目数量。" @@ -468,11 +474,11 @@ msgstr "仅解析最后声明的可疑事件的日志条目数量。" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "“msmtp”所用的 banIP 电子邮件通知配置。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -490,11 +496,15 @@ msgstr "重新载入" msgid "Report Directory" msgstr "报告目录" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "重启" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -535,7 +545,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "banIP 通知邮件的发送地址。" @@ -564,7 +574,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -606,7 +616,15 @@ msgstr "IPSet 相关的报告文件的目标目录。" msgid "Target directory for compressed source list backups." msgstr "压缩的源列表备份的目标目录。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -626,14 +644,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -650,7 +668,7 @@ msgstr "" msgid "Timestamp" msgstr "时间戳" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "banIP 通知邮件的主题。" @@ -658,8 +676,8 @@ msgstr "banIP 通知邮件的主题。" msgid "Trigger Delay" msgstr "触发延时" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -675,7 +693,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -683,7 +701,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/po/zh_Hant/banip.po b/applications/luci-app-banip/po/zh_Hant/banip.po index 00b2b46e27..9ca8b32f96 100644 --- a/applications/luci-app-banip/po/zh_Hant/banip.po +++ b/applications/luci-app-banip/po/zh_Hant/banip.po @@ -14,31 +14,31 @@ msgstr "" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "-100" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 msgid "-200 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 msgid "-300" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "-400" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 msgid "0" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "100 (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 msgid "1000" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "2048" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 msgid "250" msgstr "" @@ -58,11 +58,11 @@ msgstr "" msgid "4096" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 msgid "50" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 msgid "500" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "512" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 msgid "ASNs" msgstr "平均取樣數" @@ -99,21 +99,21 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Allowlist Only" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18 msgid "" "Allowlist modifications have been saved, restart banIP that changes take " "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Auto Blocklist" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Auto Detection" msgstr "自動偵測" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 msgid "Automatically transfers uplink IPs to the banIP allowlist." msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Base working directory while banIP processing." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Blocklist Expiry" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Blocklist Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18 msgid "" "Blocklist modifications have been saved, restart banIP that changes take " "effect." @@ -164,7 +164,7 @@ msgstr "" msgid "Cancel" msgstr "取消" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "Chain Priority" msgstr "" @@ -181,7 +181,7 @@ msgid "" "documentation" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 msgid "Countries" msgstr "地區" @@ -201,11 +201,11 @@ msgid "" "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Don't check SSL server certificates during download." msgstr "下載期間不檢查 SSL 伺服器證書。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 msgid "Download Insecure" msgstr "下載不安全" @@ -217,15 +217,15 @@ msgstr "下載參數" msgid "Download Utility" msgstr "下載工具" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "E-Mail Profile" msgstr "電郵設定檔" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "E-Mail Receiver Address" msgstr "電郵收件人位址" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "E-Mail Sender Address" msgstr "電郵寄件人位址" @@ -233,7 +233,7 @@ msgstr "電郵寄件人位址" msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "E-Mail Topic" msgstr "電郵主旨" @@ -273,11 +273,11 @@ msgstr "" msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 msgid "Feed Selection" msgstr "" @@ -331,7 +331,7 @@ msgstr "資訊" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "LAN-Forward Chain" msgstr "" @@ -347,15 +347,15 @@ msgstr "最低優先順序" msgid "Less Priority" msgstr "較低優先順序" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "Limit certain feeds to the WAN-Input chain." msgstr "" @@ -363,6 +363,12 @@ msgstr "" msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "" +"List Set elements in the report, disable this to speed up the report " +"significantly." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 msgid "List of available network interfaces to trigger the banIP start." msgstr "觸發 banIP 啟動的可用網路介面列表。" @@ -371,7 +377,7 @@ msgstr "觸發 banIP 啟動的可用網路介面列表。" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "Log Count" msgstr "" @@ -379,7 +385,7 @@ msgstr "" msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Log Limit" msgstr "日誌限制" @@ -387,7 +393,7 @@ msgstr "日誌限制" msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Log Terms" msgstr "日誌項目" @@ -445,7 +451,7 @@ msgstr "" msgid "Normal Priority (default)" msgstr "正常優先順序 (預設)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 msgid "" "Number of failed login attempts of the same IP in the log before blocking." msgstr "" @@ -460,7 +466,7 @@ msgstr "" msgid "Overview" msgstr "概覽" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "僅解析最後宣告的可疑事件的日誌項目數量。" @@ -468,11 +474,11 @@ msgstr "僅解析最後宣告的可疑事件的日誌項目數量。" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "「msmtp」所用的 banIP 電子郵件通知設定。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -490,11 +496,15 @@ msgstr "重新載入" msgid "Report Directory" msgstr "報告目錄" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 +msgid "Report Elements" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 msgid "Restart" msgstr "重新啟動" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -535,7 +545,7 @@ msgstr "" msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 msgid "Sender address for banIP notification E-Mails." msgstr "banIP 通知郵件的傳送位址。" @@ -564,7 +574,7 @@ msgstr "" msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 msgid "" "Set the nft chain priority within the banIP table. Please note: lower values " "means higher priority." @@ -606,7 +616,15 @@ msgstr "IPSet 相關的報告檔案的目的目錄。" msgid "Target directory for compressed source list backups." msgstr "壓縮的來源列表備份的目的目錄。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 +msgid "The allowlist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25 +msgid "The blocklist is too big, unable to save modifications." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "" "The default log terms / regular expressions are filtering suspicious ssh, " "LuCI, nginx and asterisk traffic." @@ -626,14 +644,14 @@ msgid "" "The syslog output, prefiltered for banIP-related processing log entries only." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29 msgid "" "This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" "IPv6 address or domain name per line." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29 msgid "" "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "addresses.
Please note: add only exactly one MAC/IPv4/" @@ -650,7 +668,7 @@ msgstr "" msgid "Timestamp" msgstr "時間戳" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 msgid "Topic for banIP notification E-Mails." msgstr "banIP 通知郵件的主題。" @@ -658,8 +676,8 @@ msgstr "banIP 通知郵件的主題。" msgid "Trigger Delay" msgstr "觸發延遲" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20 msgid "Unable to save modifications: %s" msgstr "" @@ -675,7 +693,7 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 msgid "WAN-Forward Chain" msgstr "" @@ -683,7 +701,7 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 msgid "WAN-Input Chain" msgstr "" diff --git a/applications/luci-app-banip/root/usr/share/rpcd/acl.d/luci-app-banip.json b/applications/luci-app-banip/root/usr/share/rpcd/acl.d/luci-app-banip.json index 2a471c9dfc..41f4f42372 100644 --- a/applications/luci-app-banip/root/usr/share/rpcd/acl.d/luci-app-banip.json +++ b/applications/luci-app-banip/root/usr/share/rpcd/acl.d/luci-app-banip.json @@ -46,7 +46,7 @@ "/usr/sbin/logread -e banIP/": [ "exec" ], - "/usr/sbin/nft -tj list table inet banIP": [ + "/usr/sbin/nft -tj list ruleset": [ "exec" ], "/etc/init.d/banip stop": [ -- 2.30.2