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';
});
},
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.<br /> \
'spellcheck': 'false',
'wrap': 'off',
'rows': 25
- }, [allowlist != null ? allowlist : ''])
+ }, [allowlist[1] != null ? allowlist[1] : ''])
)
]);
},
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';
});
},
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.<br /> \
'spellcheck': 'false',
'wrap': 'off',
'rows': 25
- }, [blocklist != null ? blocklist : ''])
+ }, [blocklist[1] != null ? blocklist[1] : ''])
)
]);
},
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;
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']), '{}')
]);
},
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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 ""
"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 ""
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 "عنوان مرسل البريد الإلكتروني"
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 "موضوع البريد الإلكتروني"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
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 ""
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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"
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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 "Държави"
"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 "Сваляй несигурно"
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 Изпращач"
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 Тема"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
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 ""
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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 ""
"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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
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 ""
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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 ""
"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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
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 ""
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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 ""
"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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
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 ""
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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"
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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"
"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"
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"
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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"
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"
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 ""
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."
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."
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 ""
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."
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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."
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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"
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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"
"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"
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"
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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"
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"
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 ""
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 "
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."
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 ""
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."
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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."
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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 ""
"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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
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 ""
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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 ""
"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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
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 ""
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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"
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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"
"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"
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"
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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"
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"
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 ""
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 "
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."
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 ""
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."
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."
"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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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."
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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"
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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"
"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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
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 ""
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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"
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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"
"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é"
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"
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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"
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"
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 ""
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 "
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."
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 ""
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."
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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."
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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 ""
"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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
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 ""
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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 ""
"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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
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 ""
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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"
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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"
"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 ""
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"
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
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 ""
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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 ""
"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"
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"
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
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 ""
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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 "国"
"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 ""
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メール送信者アドレス"
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メールトピック"
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 ""
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 ""
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 ""
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 ""
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 ""
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 "ログ制限"
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 ""
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 ""
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 ""
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."
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 ""
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 ""
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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 ""
"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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
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 ""
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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 ""
"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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
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 ""
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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 ""
"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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
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 ""
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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 ""
"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 ""
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"
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
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 ""
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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"
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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"
"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"
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"
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"
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 ""
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 ""
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 ""
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."
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 ""
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"
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)"
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 ""
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."
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."
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 ""
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."
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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"
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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"
"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"
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"
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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"
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"
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 ""
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 "
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."
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 ""
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."
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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."
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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"
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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"
"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"
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"
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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"
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"
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 ""
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 "
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."
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 ""
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."
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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."
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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"
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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"
"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"
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"
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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"
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"
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 ""
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 "
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."
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 ""
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."
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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."
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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"
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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"
"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"
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"
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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"
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"
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 ""
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 "
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."
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 ""
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."
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."
"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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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."
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 "Автономные системы"
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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 "Страны"
"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 "Небезопасная загрузка"
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 "Адрес отправителя"
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 "Тема"
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 ""
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 ""
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 ""
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."
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
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 ""
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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 ""
"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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
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 ""
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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"
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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 ""
"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"
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"
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
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 ""
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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 ""
"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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
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 ""
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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 ""
"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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
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 ""
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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"
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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"
"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"
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"
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"
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 ""
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 ""
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 ""
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."
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 ""
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ı"
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ı"
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 ""
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ı "
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."
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 ""
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."
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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."
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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 ""
"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 "Завантажувати небезпечним шляхом"
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 адреса відправника"
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 "Тема"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
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 ""
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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 ""
"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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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."
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 ""
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 ""
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 "平均取样数"
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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 "地区"
"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 "下载不安全"
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 "电子邮件发件人地址"
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 "电子邮件主题"
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 ""
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 ""
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 ""
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 启动的可用网络接口列表。"
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 ""
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 "日志限制"
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 "日志项"
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 ""
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 "仅解析最后声明的可疑事件的日志条目数量。"
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."
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 ""
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 通知邮件的发送地址。"
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 通知邮件的主题。"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 "平均取樣數"
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 ""
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 ""
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 ""
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."
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 ""
"documentation</a>"
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 "地區"
"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 "下載不安全"
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 "電郵寄件人位址"
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 "電郵主旨"
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 ""
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 ""
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 ""
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 啟動的可用網路介面列表。"
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 ""
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 "日誌限制"
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 "日誌項目"
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 ""
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 "僅解析最後宣告的可疑事件的日誌項目數量。"
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."
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 ""
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 通知郵件的傳送位址。"
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."
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."
"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.<br /> <em><b>Please note:</b></em> 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.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
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 通知郵件的主題。"
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 ""
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 ""
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 ""
"/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": [