luci-app-banip: sync with banIP 0.8.2

* add a warning popup to Allow-/Blocklist if the filesize >= 100 kb
* support the new 'ban_reportelements' option
* sync translations

Signed-off-by: Dirk Brenken <dev@brenken.org>
This commit is contained in:
Dirk Brenken 2023-03-08 22:22:04 +01:00
parent 9c5c39fef4
commit d683fa7ffb
No known key found for this signature in database
GPG key ID: 9D71CD547BFAE684
41 changed files with 2506 additions and 1842 deletions

View file

@ -5,7 +5,10 @@
return view.extend({ return view.extend({
load: function () { 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) { handleSave: function (ev) {
var value = ((document.querySelector('textarea').value || '').trim().toLowerCase().replace(/\r\n/g, '\n')) + '\n'; var value = ((document.querySelector('textarea').value || '').trim().toLowerCase().replace(/\r\n/g, '\n')) + '\n';
@ -18,6 +21,9 @@ return view.extend({
}); });
}, },
render: function (allowlist) { 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([ return E([
E('p', {}, E('p', {},
_('This is the local banIP allowlist that will permit certain MAC/IP/CIDR addresses.<br /> \ _('This is the local banIP allowlist that will permit certain MAC/IP/CIDR addresses.<br /> \
@ -28,7 +34,7 @@ return view.extend({
'spellcheck': 'false', 'spellcheck': 'false',
'wrap': 'off', 'wrap': 'off',
'rows': 25 'rows': 25
}, [allowlist != null ? allowlist : '']) }, [allowlist[1] != null ? allowlist[1] : ''])
) )
]); ]);
}, },

View file

@ -5,7 +5,10 @@
return view.extend({ return view.extend({
load: function () { 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) { handleSave: function (ev) {
var value = ((document.querySelector('textarea').value || '').trim().toLowerCase().replace(/\r\n/g, '\n')) + '\n'; var value = ((document.querySelector('textarea').value || '').trim().toLowerCase().replace(/\r\n/g, '\n')) + '\n';
@ -18,6 +21,9 @@ return view.extend({
}); });
}, },
render: function (blocklist) { 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([ return E([
E('p', {}, E('p', {},
_('This is the local banIP blocklist that will prevent certain MAC/IP/CIDR addresses.<br /> \ _('This is the local banIP blocklist that will prevent certain MAC/IP/CIDR addresses.<br /> \
@ -28,7 +34,7 @@ return view.extend({
'spellcheck': 'false', 'spellcheck': 'false',
'wrap': 'off', 'wrap': 'off',
'rows': 25 'rows': 25
}, [blocklist != null ? blocklist : '']) }, [blocklist[1] != null ? blocklist[1] : ''])
) )
]); ]);
}, },

View file

@ -362,6 +362,10 @@ return view.extend({
o.placeholder = '/tmp/banIP-report'; o.placeholder = '/tmp/banIP-report';
o.rmempty = true; 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 = s.taboption('advanced', form.Flag, 'ban_fetchinsecure', _('Download Insecure'), _('Don\'t check SSL server certificates during download.'));
o.rmempty = true; o.rmempty = true;

View file

@ -132,7 +132,7 @@ return view.extend({
load: function () { load: function () {
return Promise.all([ return Promise.all([
L.resolveDefault(fs.exec_direct('/etc/init.d/banip', ['report', 'json']), '{}'), 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']), '{}')
]); ]);
}, },

View file

@ -15,31 +15,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -51,7 +51,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -59,11 +59,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -71,7 +71,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "" msgstr ""
@ -100,21 +100,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -122,11 +122,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -142,7 +142,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -150,7 +150,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -165,7 +165,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "إلغاء" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -182,7 +182,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "" msgstr ""
@ -202,11 +202,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "" 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" msgid "Download Insecure"
msgstr "" msgstr ""
@ -218,15 +218,15 @@ msgstr "تنزيل المعلمات"
msgid "Download Utility" msgid "Download Utility"
msgstr "تحميل الأداة" 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" msgid "E-Mail Profile"
msgstr "ملف تعريف البريد الإلكتروني" 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" msgid "E-Mail Receiver Address"
msgstr "عنوان مستقبل البريد الإلكتروني" 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" msgid "E-Mail Sender Address"
msgstr "عنوان مرسل البريد الإلكتروني" msgstr "عنوان مرسل البريد الإلكتروني"
@ -234,7 +234,7 @@ msgstr "عنوان مرسل البريد الإلكتروني"
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "موضوع البريد الإلكتروني" msgstr "موضوع البريد الإلكتروني"
@ -274,11 +274,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -332,7 +332,7 @@ msgstr "معلومة"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -348,15 +348,15 @@ msgstr ""
msgid "Less Priority" msgid "Less Priority"
msgstr "" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -364,6 +364,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -372,7 +378,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -380,7 +386,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "" msgstr ""
@ -388,7 +394,7 @@ msgstr ""
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "" msgstr ""
@ -446,7 +452,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -461,7 +467,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "نظرة عامة" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -469,11 +475,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -491,11 +497,15 @@ msgstr ""
msgid "Report Directory" msgid "Report Directory"
msgstr "دليل التقارير" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "إعادة تشغيل" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -536,7 +546,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -565,7 +575,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -607,7 +617,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -627,14 +645,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -651,7 +669,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" 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." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
@ -659,8 +677,8 @@ msgstr ""
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "تأخير الزناد" msgstr "تأخير الزناد"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.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:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -676,7 +694,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -684,7 +702,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "ASNs" msgstr "ASNs"
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Автоматично засичане" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -141,7 +141,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -164,7 +164,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Отмени" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -181,7 +181,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "Държави" msgstr "Държави"
@ -201,11 +201,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "Не проверявай SSL сертификати по време на сваляне." 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" msgid "Download Insecure"
msgstr "Сваляй несигурно" msgstr "Сваляй несигурно"
@ -217,15 +217,15 @@ msgstr "Параметри за теглене"
msgid "Download Utility" msgid "Download Utility"
msgstr "" 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" msgid "E-Mail Profile"
msgstr "E-Mail Профил" 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" msgid "E-Mail Receiver Address"
msgstr "" 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" msgid "E-Mail Sender Address"
msgstr "E-Mail Изпращач" msgstr "E-Mail Изпращач"
@ -233,7 +233,7 @@ msgstr "E-Mail Изпращач"
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "E-Mail Тема" msgstr "E-Mail Тема"
@ -273,11 +273,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -331,7 +331,7 @@ msgstr "Информация"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -347,15 +347,15 @@ msgstr ""
msgid "Less Priority" msgid "Less Priority"
msgstr "" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -363,6 +363,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -371,7 +377,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -379,7 +385,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "" msgstr ""
@ -387,7 +393,7 @@ msgstr ""
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "" msgstr ""
@ -445,7 +451,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -460,7 +466,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -468,11 +474,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -490,11 +496,15 @@ msgstr ""
msgid "Report Directory" msgid "Report Directory"
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -535,7 +545,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -564,7 +574,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -606,7 +616,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -626,14 +644,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -650,7 +668,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" 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." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
@ -658,8 +676,8 @@ msgstr ""
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.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:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -675,7 +693,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -683,7 +701,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "" msgstr ""
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -141,7 +141,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -164,7 +164,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "বাতিল করুন" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -181,7 +181,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "" msgstr ""
@ -201,11 +201,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "" 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" msgid "Download Insecure"
msgstr "" msgstr ""
@ -217,15 +217,15 @@ msgstr ""
msgid "Download Utility" msgid "Download Utility"
msgstr "" 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" msgid "E-Mail Profile"
msgstr "" 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" msgid "E-Mail Receiver Address"
msgstr "" 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" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
@ -233,7 +233,7 @@ msgstr ""
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -273,11 +273,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -331,7 +331,7 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -347,15 +347,15 @@ msgstr ""
msgid "Less Priority" msgid "Less Priority"
msgstr "" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -363,6 +363,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -371,7 +377,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -379,7 +385,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "" msgstr ""
@ -387,7 +393,7 @@ msgstr ""
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "" msgstr ""
@ -445,7 +451,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -460,7 +466,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -468,11 +474,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -490,11 +496,15 @@ msgstr ""
msgid "Report Directory" msgid "Report Directory"
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -535,7 +545,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -564,7 +574,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -606,7 +616,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -626,14 +644,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -650,7 +668,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" 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." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
@ -658,8 +676,8 @@ msgstr ""
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.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:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -675,7 +693,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -683,7 +701,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "" msgstr ""
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -141,7 +141,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -164,7 +164,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Cancel•lar" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -181,7 +181,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "" msgstr ""
@ -201,11 +201,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "" 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" msgid "Download Insecure"
msgstr "" msgstr ""
@ -217,15 +217,15 @@ msgstr "Paràmetres de descàrrega"
msgid "Download Utility" msgid "Download Utility"
msgstr "Utilitat de baixades" 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" msgid "E-Mail Profile"
msgstr "" 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" msgid "E-Mail Receiver Address"
msgstr "Adreça del destinatari de correu" 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" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
@ -233,7 +233,7 @@ msgstr ""
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -273,11 +273,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -331,7 +331,7 @@ msgstr "Informació"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -347,15 +347,15 @@ msgstr ""
msgid "Less Priority" msgid "Less Priority"
msgstr "" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -363,6 +363,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -371,7 +377,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -379,7 +385,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "" msgstr ""
@ -387,7 +393,7 @@ msgstr ""
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "" msgstr ""
@ -445,7 +451,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -460,7 +466,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Visió de conjunt" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -468,11 +474,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -490,11 +496,15 @@ msgstr "Torna a carregar"
msgid "Report Directory" msgid "Report Directory"
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "Reiniciar" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -535,7 +545,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -564,7 +574,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -606,7 +616,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -626,14 +644,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -650,7 +668,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" 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." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
@ -658,8 +676,8 @@ msgstr ""
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.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:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -675,7 +693,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -683,7 +701,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "" msgstr ""
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -141,7 +141,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -164,7 +164,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Zrušit" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -181,7 +181,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "" msgstr ""
@ -201,11 +201,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "" 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" msgid "Download Insecure"
msgstr "" msgstr ""
@ -217,15 +217,15 @@ msgstr ""
msgid "Download Utility" msgid "Download Utility"
msgstr "Nástroj pro stahování" 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" msgid "E-Mail Profile"
msgstr "" 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" msgid "E-Mail Receiver Address"
msgstr "" 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" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
@ -233,7 +233,7 @@ msgstr ""
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -273,11 +273,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -331,7 +331,7 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -347,15 +347,15 @@ msgstr ""
msgid "Less Priority" msgid "Less Priority"
msgstr "" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -363,6 +363,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -371,7 +377,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -379,7 +385,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "" msgstr ""
@ -387,7 +393,7 @@ msgstr ""
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "" msgstr ""
@ -445,7 +451,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -460,7 +466,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Přehled" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -468,11 +474,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -490,11 +496,15 @@ msgstr "Znovu načíst"
msgid "Report Directory" msgid "Report Directory"
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -535,7 +545,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -564,7 +574,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -606,7 +616,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -626,14 +644,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -650,7 +668,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" 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." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
@ -658,8 +676,8 @@ msgstr ""
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Prodleva spuštění" 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/allowlist.js:20
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -675,7 +693,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -683,7 +701,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "ASN'er" msgstr "ASN'er"
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Automatisk detektering" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -141,7 +141,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -164,7 +164,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Annuller" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -181,7 +181,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "Lande" msgstr "Lande"
@ -201,11 +201,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "Kontroller ikke SSL-servercertifikater under 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" msgid "Download Insecure"
msgstr "Download usikker" msgstr "Download usikker"
@ -217,15 +217,15 @@ msgstr "Download parametre"
msgid "Download Utility" msgid "Download Utility"
msgstr "Download hjælpeprogram" 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" msgid "E-Mail Profile"
msgstr "E-mail profil" 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" msgid "E-Mail Receiver Address"
msgstr "Modtagerens e-mailadresse" 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" msgid "E-Mail Sender Address"
msgstr "E-mail afsenderadresse" msgstr "E-mail afsenderadresse"
@ -233,7 +233,7 @@ msgstr "E-mail afsenderadresse"
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "E-mail emne" msgstr "E-mail emne"
@ -273,11 +273,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -331,7 +331,7 @@ msgstr "Information"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -347,15 +347,15 @@ msgstr "Mindste prioritet"
msgid "Less Priority" msgid "Less Priority"
msgstr "Mindre prioritet" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -363,6 +363,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -372,7 +378,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -380,7 +386,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "Loggrænse" msgstr "Loggrænse"
@ -388,7 +394,7 @@ msgstr "Loggrænse"
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "Log Vilkår" msgstr "Log Vilkår"
@ -446,7 +452,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "Normal prioritet (standard)" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -461,7 +467,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Oversigt" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
"Analyser kun det sidste angivne antal logposter for mistænkelige hændelser." "Analyser kun det sidste angivne antal logposter for mistænkelige hændelser."
@ -470,11 +476,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "Profil, der anvendes af \"msmtp\" til banIP-meddelelses-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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -492,11 +498,15 @@ msgstr ""
msgid "Report Directory" msgid "Report Directory"
msgstr "Rapportmappe" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "Genstart" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -537,7 +547,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "Afsenderadresse for banIP-meddelelses-e-mails." msgstr "Afsenderadresse for banIP-meddelelses-e-mails."
@ -566,7 +576,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -608,7 +618,15 @@ msgstr "Målmappe for IPSet-relaterede rapportfiler."
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "Målmappe for komprimerede sikkerhedskopier af kildelister." 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -628,14 +646,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -652,7 +670,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "Tidsstempel" 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." msgid "Topic for banIP notification E-Mails."
msgstr "Emne for banIP-meddelelses-e-mails." msgstr "Emne for banIP-meddelelses-e-mails."
@ -660,8 +678,8 @@ msgstr "Emne for banIP-meddelelses-e-mails."
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Udløserforsinkelse" 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/allowlist.js:20
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -677,7 +695,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -685,7 +703,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "Autonome Systemnummern" msgstr "Autonome Systemnummern"
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Automatische Erkennung" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -141,7 +141,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -164,7 +164,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Abbrechen" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -181,7 +181,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "Länder" msgstr "Länder"
@ -201,11 +201,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "Während des Downloads keine SSL-Serverzertifikate überprüfen." 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" msgid "Download Insecure"
msgstr "Unsicher herunterladen" msgstr "Unsicher herunterladen"
@ -217,15 +217,15 @@ msgstr "Download Parameter"
msgid "Download Utility" msgid "Download Utility"
msgstr "Download-Werkzeug" 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" msgid "E-Mail Profile"
msgstr "E-Mail-Profil" 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" msgid "E-Mail Receiver Address"
msgstr "E-Mail Empfängeradresse" 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" msgid "E-Mail Sender Address"
msgstr "E-Mail Absenderadresse" msgstr "E-Mail Absenderadresse"
@ -233,7 +233,7 @@ msgstr "E-Mail Absenderadresse"
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "E-Mail-Thema" msgstr "E-Mail-Thema"
@ -273,11 +273,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -331,7 +331,7 @@ msgstr "Informationen"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -347,15 +347,15 @@ msgstr "Niedrigste Priorität"
msgid "Less Priority" msgid "Less Priority"
msgstr "Niedrige Priorität" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -363,6 +363,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -373,7 +379,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -381,7 +387,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "Protokollbegrenzung" msgstr "Protokollbegrenzung"
@ -389,7 +395,7 @@ msgstr "Protokollbegrenzung"
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "Protokollbedingungen" msgstr "Protokollbedingungen"
@ -447,7 +453,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "Normale Priorität (Voreinstellung)" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -462,7 +468,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Übersicht" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
"Nur die zuletzt angegebene Anzahl der Protokolleinträge auf verdächtige " "Nur die zuletzt angegebene Anzahl der Protokolleinträge auf verdächtige "
@ -472,11 +478,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "Von 'msmtp' verwendetes Profil für banIP-Benachrichtigungs-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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -494,11 +500,15 @@ msgstr "Neu laden"
msgid "Report Directory" msgid "Report Directory"
msgstr "Report-Verzeichnis" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "Neustart" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -539,7 +549,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "Absenderadresse für banIP-Benachrichtigungs-E-Mails." msgstr "Absenderadresse für banIP-Benachrichtigungs-E-Mails."
@ -568,7 +578,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -610,7 +620,15 @@ msgstr "Zielverzeichnis für IPSet-bezogene Berichtsdateien."
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "Zielverzeichnis für komprimierte Quelllistensicherungen." 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -630,14 +648,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -654,7 +672,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "Zeitstempel" 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." msgid "Topic for banIP notification E-Mails."
msgstr "Betreff für banIP-Benachrichtigungs-E-Mails." msgstr "Betreff für banIP-Benachrichtigungs-E-Mails."
@ -662,8 +680,8 @@ msgstr "Betreff für banIP-Benachrichtigungs-E-Mails."
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Verzögerung der Trigger-Bedingung" 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/allowlist.js:20
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -679,7 +697,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -687,7 +705,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "" msgstr ""
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -141,7 +141,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -164,7 +164,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Ακύρωση" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -181,7 +181,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "" msgstr ""
@ -201,11 +201,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "" 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" msgid "Download Insecure"
msgstr "" msgstr ""
@ -217,15 +217,15 @@ msgstr ""
msgid "Download Utility" msgid "Download Utility"
msgstr "" 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" msgid "E-Mail Profile"
msgstr "" 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" msgid "E-Mail Receiver Address"
msgstr "" 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" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
@ -233,7 +233,7 @@ msgstr ""
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -273,11 +273,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -331,7 +331,7 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -347,15 +347,15 @@ msgstr ""
msgid "Less Priority" msgid "Less Priority"
msgstr "" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -363,6 +363,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -371,7 +377,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -379,7 +385,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "" msgstr ""
@ -387,7 +393,7 @@ msgstr ""
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "" msgstr ""
@ -445,7 +451,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -460,7 +466,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -468,11 +474,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -490,11 +496,15 @@ msgstr ""
msgid "Report Directory" msgid "Report Directory"
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -535,7 +545,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -564,7 +574,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -606,7 +616,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -626,14 +644,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -650,7 +668,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" 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." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
@ -658,8 +676,8 @@ msgstr ""
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.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:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -675,7 +693,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -683,7 +701,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "" msgstr ""
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -141,7 +141,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -164,7 +164,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -181,7 +181,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "" msgstr ""
@ -201,11 +201,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "" 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" msgid "Download Insecure"
msgstr "" msgstr ""
@ -217,15 +217,15 @@ msgstr ""
msgid "Download Utility" msgid "Download Utility"
msgstr "" 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" msgid "E-Mail Profile"
msgstr "" 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" msgid "E-Mail Receiver Address"
msgstr "" 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" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
@ -233,7 +233,7 @@ msgstr ""
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -273,11 +273,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -331,7 +331,7 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -347,15 +347,15 @@ msgstr ""
msgid "Less Priority" msgid "Less Priority"
msgstr "" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -363,6 +363,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -371,7 +377,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -379,7 +385,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "" msgstr ""
@ -387,7 +393,7 @@ msgstr ""
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "" msgstr ""
@ -445,7 +451,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -460,7 +466,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -468,11 +474,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -490,11 +496,15 @@ msgstr ""
msgid "Report Directory" msgid "Report Directory"
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -535,7 +545,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -564,7 +574,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -606,7 +616,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -626,14 +644,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -650,7 +668,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" 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." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
@ -658,8 +676,8 @@ msgstr ""
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.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:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -675,7 +693,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -683,7 +701,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -17,31 +17,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -53,7 +53,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -61,11 +61,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -73,7 +73,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "ASNs" msgstr "ASNs"
@ -102,21 +102,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -124,11 +124,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Detección automática" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -144,7 +144,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -152,7 +152,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -167,7 +167,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Cancelar" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -184,7 +184,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "Países" msgstr "Países"
@ -204,11 +204,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "No verificar los certificados SSL del servidor durante la descarga." 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" msgid "Download Insecure"
msgstr "Descarga insegura" msgstr "Descarga insegura"
@ -220,15 +220,15 @@ msgstr "Descargar parámetros"
msgid "Download Utility" msgid "Download Utility"
msgstr "Utilidad de descarga" 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" msgid "E-Mail Profile"
msgstr "Perfil de correo electrónico" 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" msgid "E-Mail Receiver Address"
msgstr "Dirección del destinatario de correo electrónico" 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" msgid "E-Mail Sender Address"
msgstr "Dirección del remitente de correo electrónico" msgstr "Dirección del remitente de correo electrónico"
@ -236,7 +236,7 @@ msgstr "Dirección del remitente de correo electrónico"
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "Tema del correo electrónico" msgstr "Tema del correo electrónico"
@ -276,11 +276,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -334,7 +334,7 @@ msgstr "Información"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -350,15 +350,15 @@ msgstr "Prioridad mínima"
msgid "Less Priority" msgid "Less Priority"
msgstr "Menos prioridad" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -366,6 +366,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -375,7 +381,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -383,7 +389,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "Límite de registro" msgstr "Límite de registro"
@ -391,7 +397,7 @@ msgstr "Límite de registro"
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "Términos de registro" msgstr "Términos de registro"
@ -449,7 +455,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "Prioridad normal (predeterminado)" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -464,7 +470,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Visión general" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
"Analice solo el último número indicado de entradas de registro para detectar " "Analice solo el último número indicado de entradas de registro para detectar "
@ -474,13 +480,13 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
"Perfil utilizado por 'msmtp' para correos electrónicos de notificación de " "Perfil utilizado por 'msmtp' para correos electrónicos de notificación de "
"banIP." "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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -498,11 +504,15 @@ msgstr "Recargar"
msgid "Report Directory" msgid "Report Directory"
msgstr "Informar directorio" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "Reiniciar" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -543,7 +553,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
"Dirección del remitente para correos electrónicos de notificación de banIP." "Dirección del remitente para correos electrónicos de notificación de banIP."
@ -573,7 +583,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -618,7 +628,15 @@ msgstr ""
"Directorio de destino para copias de seguridad de listas de origen " "Directorio de destino para copias de seguridad de listas de origen "
"comprimidas." "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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -638,14 +656,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -662,7 +680,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "Marca de tiempo" 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." msgid "Topic for banIP notification E-Mails."
msgstr "Tema para correos electrónicos de notificación de banIP." msgstr "Tema para correos electrónicos de notificación de banIP."
@ -670,8 +688,8 @@ msgstr "Tema para correos electrónicos de notificación de banIP."
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Retraso de disparo" 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/allowlist.js:20
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -687,7 +705,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -695,7 +713,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "ASN:t" msgstr "ASN:t"
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Automaattinen tunnistus" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -141,7 +141,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -164,7 +164,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Peruuta" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -181,7 +181,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "Maat" msgstr "Maat"
@ -201,11 +201,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "Älä tarkista SSL-palvelinvarmenteita latauksen aikana." 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" msgid "Download Insecure"
msgstr "" msgstr ""
@ -217,15 +217,15 @@ msgstr ""
msgid "Download Utility" msgid "Download Utility"
msgstr "Lataustyökalu" 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" msgid "E-Mail Profile"
msgstr "" 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" msgid "E-Mail Receiver Address"
msgstr "" 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" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
@ -233,7 +233,7 @@ msgstr ""
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -273,11 +273,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -331,7 +331,7 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -347,15 +347,15 @@ msgstr ""
msgid "Less Priority" msgid "Less Priority"
msgstr "" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -363,6 +363,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -371,7 +377,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -379,7 +385,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "" msgstr ""
@ -387,7 +393,7 @@ msgstr ""
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "" msgstr ""
@ -445,7 +451,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -460,7 +466,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Yleiskatsaus" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -468,11 +474,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -490,11 +496,15 @@ msgstr ""
msgid "Report Directory" msgid "Report Directory"
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "Käynnistä uudelleen" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -535,7 +545,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -564,7 +574,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -606,7 +616,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -626,14 +644,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -650,7 +668,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" 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." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
@ -658,8 +676,8 @@ msgstr ""
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.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:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -675,7 +693,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -683,7 +701,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "Les ASN" msgstr "Les ASN"
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Détection automatique" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -141,7 +141,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -164,7 +164,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Annuler" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -181,7 +181,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "Pays" msgstr "Pays"
@ -201,12 +201,12 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "" msgstr ""
"Ne pas vérifier les certificats SSL du serveur pendant le téléchargement." "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" msgid "Download Insecure"
msgstr "Téléchargement non sécurisé" msgstr "Téléchargement non sécurisé"
@ -218,15 +218,15 @@ msgstr "Paramètres de téléchargement"
msgid "Download Utility" msgid "Download Utility"
msgstr "Télécharger l'utilitaire" 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" msgid "E-Mail Profile"
msgstr "Courriel du profil" 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" msgid "E-Mail Receiver Address"
msgstr "Adresse courriel du destinataire" 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" msgid "E-Mail Sender Address"
msgstr "Adresse courriel de l'expéditeur" msgstr "Adresse courriel de l'expéditeur"
@ -234,7 +234,7 @@ msgstr "Adresse courriel de l'expéditeur"
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "Objet du courriel" msgstr "Objet du courriel"
@ -274,11 +274,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -332,7 +332,7 @@ msgstr "Information"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -348,15 +348,15 @@ msgstr "Priorité minimale"
msgid "Less Priority" msgid "Less Priority"
msgstr "Moins prioritaire" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -364,6 +364,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -374,7 +380,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -382,7 +388,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "Limite de journalisation" msgstr "Limite de journalisation"
@ -390,7 +396,7 @@ msgstr "Limite de journalisation"
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "Conditions de journalisation" msgstr "Conditions de journalisation"
@ -448,7 +454,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "Priorité normale (par défaut)" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -463,7 +469,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Aperçu" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
"Analyser uniquement le dernier nombre indiqué d'entrées de journal pour les " "Analyser uniquement le dernier nombre indiqué d'entrées de journal pour les "
@ -473,13 +479,13 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
"Profil utilisé par 'msmtp' pour les courriel de notification de bannissement " "Profil utilisé par 'msmtp' pour les courriel de notification de bannissement "
"IP." "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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -497,11 +503,15 @@ msgstr "Recharger"
msgid "Report Directory" msgid "Report Directory"
msgstr "Répertoire des rapports" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "Redémarrer" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -542,7 +552,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
"Adresse de l'expéditeur des courriels de notification de bannissement IP." "Adresse de l'expéditeur des courriels de notification de bannissement IP."
@ -572,7 +582,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -615,7 +625,15 @@ msgid "Target directory for compressed source list backups."
msgstr "" msgstr ""
"Répertoire cible pour les sauvegardes compressées de la liste des sources." "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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -635,14 +653,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -659,7 +677,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "Horodatage" 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." msgid "Topic for banIP notification E-Mails."
msgstr "Rubrique pour les courriels de notification banIP." msgstr "Rubrique pour les courriels de notification banIP."
@ -667,8 +685,8 @@ msgstr "Rubrique pour les courriels de notification banIP."
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Délai de déclenchement" 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/allowlist.js:20
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -684,7 +702,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -692,7 +710,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -15,31 +15,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -51,7 +51,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -59,11 +59,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -71,7 +71,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "" msgstr ""
@ -100,21 +100,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -122,11 +122,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -142,7 +142,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -150,7 +150,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -165,7 +165,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -182,7 +182,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "" msgstr ""
@ -202,11 +202,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "" 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" msgid "Download Insecure"
msgstr "" msgstr ""
@ -218,15 +218,15 @@ msgstr ""
msgid "Download Utility" msgid "Download Utility"
msgstr "" 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" msgid "E-Mail Profile"
msgstr "" 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" msgid "E-Mail Receiver Address"
msgstr "" 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" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
@ -234,7 +234,7 @@ msgstr ""
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -274,11 +274,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -332,7 +332,7 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -348,15 +348,15 @@ msgstr ""
msgid "Less Priority" msgid "Less Priority"
msgstr "" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -364,6 +364,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -372,7 +378,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -380,7 +386,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "" msgstr ""
@ -388,7 +394,7 @@ msgstr ""
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "" msgstr ""
@ -446,7 +452,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -461,7 +467,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -469,11 +475,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -491,11 +497,15 @@ msgstr ""
msgid "Report Directory" msgid "Report Directory"
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -536,7 +546,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -565,7 +575,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -607,7 +617,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -627,14 +645,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -651,7 +669,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" 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." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
@ -659,8 +677,8 @@ msgstr ""
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.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:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -676,7 +694,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -684,7 +702,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -8,31 +8,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -44,7 +44,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -52,11 +52,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -64,7 +64,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "" msgstr ""
@ -93,21 +93,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -115,11 +115,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -135,7 +135,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -143,7 +143,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -158,7 +158,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -175,7 +175,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "" msgstr ""
@ -195,11 +195,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "" 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" msgid "Download Insecure"
msgstr "" msgstr ""
@ -211,15 +211,15 @@ msgstr ""
msgid "Download Utility" msgid "Download Utility"
msgstr "" 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" msgid "E-Mail Profile"
msgstr "" 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" msgid "E-Mail Receiver Address"
msgstr "" 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" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
@ -227,7 +227,7 @@ msgstr ""
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -267,11 +267,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -325,7 +325,7 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -341,15 +341,15 @@ msgstr ""
msgid "Less Priority" msgid "Less Priority"
msgstr "" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -357,6 +357,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -365,7 +371,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -373,7 +379,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "" msgstr ""
@ -381,7 +387,7 @@ msgstr ""
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "" msgstr ""
@ -439,7 +445,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -454,7 +460,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -462,11 +468,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -484,11 +490,15 @@ msgstr ""
msgid "Report Directory" msgid "Report Directory"
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -529,7 +539,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -558,7 +568,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -600,7 +610,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -620,14 +638,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -644,7 +662,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" 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." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
@ -652,8 +670,8 @@ msgstr ""
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.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:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -669,7 +687,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -677,7 +695,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "AS számok" msgstr "AS számok"
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Automatikus észlelés" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -141,7 +141,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -164,7 +164,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Mégse" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -181,7 +181,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "Országok" msgstr "Országok"
@ -201,11 +201,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "" 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" msgid "Download Insecure"
msgstr "" msgstr ""
@ -217,15 +217,15 @@ msgstr ""
msgid "Download Utility" msgid "Download Utility"
msgstr "Letöltési segédprogram" 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" msgid "E-Mail Profile"
msgstr "E-Mail profil" 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" msgid "E-Mail Receiver Address"
msgstr "" 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" msgid "E-Mail Sender Address"
msgstr "E-Mail küldő cím" msgstr "E-Mail küldő cím"
@ -233,7 +233,7 @@ msgstr "E-Mail küldő cím"
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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 #, fuzzy
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "E-Mail téma" msgstr "E-Mail téma"
@ -274,11 +274,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -332,7 +332,7 @@ msgstr "Információ"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -348,15 +348,15 @@ msgstr "Legkisebb prioritás"
msgid "Less Priority" msgid "Less Priority"
msgstr "Kisebb prioritás" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -364,6 +364,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -372,7 +378,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -380,7 +386,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "" msgstr ""
@ -388,7 +394,7 @@ msgstr ""
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "" msgstr ""
@ -446,7 +452,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "Közepes prioritás (alapértelmezett)" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -461,7 +467,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Áttekintés" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -469,11 +475,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -491,11 +497,15 @@ msgstr "Újratöltés"
msgid "Report Directory" msgid "Report Directory"
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "Újraindítás" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -536,7 +546,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -565,7 +575,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -607,7 +617,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -627,14 +645,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -651,7 +669,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" 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." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
@ -659,8 +677,8 @@ msgstr ""
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Aktiváló késleltetése" 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/allowlist.js:20
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -676,7 +694,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -684,7 +702,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "" msgstr ""
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -141,7 +141,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -164,7 +164,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Annulla" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -181,7 +181,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "" msgstr ""
@ -201,11 +201,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "Non controllare i certificati del server SSL durante il 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" msgid "Download Insecure"
msgstr "Download non sicuro" msgstr "Download non sicuro"
@ -217,15 +217,15 @@ msgstr "Parametri di download"
msgid "Download Utility" msgid "Download Utility"
msgstr "Utilità di download" 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" msgid "E-Mail Profile"
msgstr "Profilo e-mail" 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" msgid "E-Mail Receiver Address"
msgstr "Indirizzo e-mail destinatario" 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" msgid "E-Mail Sender Address"
msgstr "Indirizzo e-mail mittente" msgstr "Indirizzo e-mail mittente"
@ -233,7 +233,7 @@ msgstr "Indirizzo e-mail mittente"
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "Oggetto e-mail" msgstr "Oggetto e-mail"
@ -273,11 +273,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -331,7 +331,7 @@ msgstr "Informazioni"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -347,15 +347,15 @@ msgstr ""
msgid "Less Priority" msgid "Less Priority"
msgstr "" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -363,6 +363,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -371,7 +377,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -379,7 +385,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "" msgstr ""
@ -387,7 +393,7 @@ msgstr ""
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "" msgstr ""
@ -445,7 +451,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -460,7 +466,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Riepilogo" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -468,11 +474,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -490,11 +496,15 @@ msgstr "Aggiorna"
msgid "Report Directory" msgid "Report Directory"
msgstr "Directory dei report" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "Riavvia" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -535,7 +545,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -564,7 +574,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -606,7 +616,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -626,14 +644,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -650,7 +668,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" 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." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
@ -658,8 +676,8 @@ msgstr ""
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.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:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -675,7 +693,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -683,7 +701,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "" msgstr ""
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "自動検出" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -141,7 +141,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -164,7 +164,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "キャンセル" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -181,7 +181,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "国" msgstr "国"
@ -201,11 +201,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "" 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" msgid "Download Insecure"
msgstr "" msgstr ""
@ -217,15 +217,15 @@ msgstr "ダウンロードのパラメータ"
msgid "Download Utility" msgid "Download Utility"
msgstr "ダウンロードユーティリティ" 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" msgid "E-Mail Profile"
msgstr "Eメールプロファイル" 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" msgid "E-Mail Receiver Address"
msgstr "Eメール受信アドレス" 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" msgid "E-Mail Sender Address"
msgstr "Eメール送信者アドレス" msgstr "Eメール送信者アドレス"
@ -233,7 +233,7 @@ msgstr "Eメール送信者アドレス"
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "Eメールトピック" msgstr "Eメールトピック"
@ -273,11 +273,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -331,7 +331,7 @@ msgstr "情報"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -347,15 +347,15 @@ msgstr "最低の優先度"
msgid "Less Priority" msgid "Less Priority"
msgstr "低い優先度" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -363,6 +363,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -371,7 +377,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -379,7 +385,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "ログ制限" msgstr "ログ制限"
@ -387,7 +393,7 @@ msgstr "ログ制限"
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "" msgstr ""
@ -445,7 +451,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "通常の優先度 (デフォルト)" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -460,7 +466,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "概要" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -468,11 +474,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -490,11 +496,15 @@ msgstr "リロード"
msgid "Report Directory" msgid "Report Directory"
msgstr "レポート ディレクトリ" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "再起動" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -535,7 +545,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -564,7 +574,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -606,7 +616,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -626,14 +644,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -650,7 +668,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "タイムスタンプ" 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." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
@ -658,8 +676,8 @@ msgstr ""
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "トリガ遅延" msgstr "トリガ遅延"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.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:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -675,7 +693,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -683,7 +701,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "" msgstr ""
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -142,7 +142,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -150,7 +150,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -165,7 +165,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "취소" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -182,7 +182,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "" msgstr ""
@ -202,11 +202,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "" 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" msgid "Download Insecure"
msgstr "" msgstr ""
@ -218,15 +218,15 @@ msgstr ""
msgid "Download Utility" msgid "Download Utility"
msgstr "" 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" msgid "E-Mail Profile"
msgstr "" 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" msgid "E-Mail Receiver Address"
msgstr "" 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" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
@ -234,7 +234,7 @@ msgstr ""
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -274,11 +274,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -332,7 +332,7 @@ msgstr "정보"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -348,15 +348,15 @@ msgstr ""
msgid "Less Priority" msgid "Less Priority"
msgstr "" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -364,6 +364,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -372,7 +378,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -380,7 +386,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "" msgstr ""
@ -388,7 +394,7 @@ msgstr ""
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "" msgstr ""
@ -446,7 +452,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -461,7 +467,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "개요" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -469,11 +475,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -491,11 +497,15 @@ msgstr ""
msgid "Report Directory" msgid "Report Directory"
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -536,7 +546,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -565,7 +575,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -607,7 +617,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -627,14 +645,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -651,7 +669,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" 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." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
@ -659,8 +677,8 @@ msgstr ""
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.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:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -676,7 +694,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -684,7 +702,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "" msgstr ""
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -141,7 +141,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -164,7 +164,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -181,7 +181,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "" msgstr ""
@ -201,11 +201,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "" 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" msgid "Download Insecure"
msgstr "" msgstr ""
@ -217,15 +217,15 @@ msgstr ""
msgid "Download Utility" msgid "Download Utility"
msgstr "" 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" msgid "E-Mail Profile"
msgstr "" 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" msgid "E-Mail Receiver Address"
msgstr "" 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" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
@ -233,7 +233,7 @@ msgstr ""
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -273,11 +273,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -331,7 +331,7 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -347,15 +347,15 @@ msgstr ""
msgid "Less Priority" msgid "Less Priority"
msgstr "" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -363,6 +363,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -371,7 +377,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -379,7 +385,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "" msgstr ""
@ -387,7 +393,7 @@ msgstr ""
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "" msgstr ""
@ -445,7 +451,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -460,7 +466,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "आढावा" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -468,11 +474,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -490,11 +496,15 @@ msgstr "रीलोड करा"
msgid "Report Directory" msgid "Report Directory"
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -535,7 +545,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -564,7 +574,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -606,7 +616,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -626,14 +644,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -650,7 +668,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" 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." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
@ -658,8 +676,8 @@ msgstr ""
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.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:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -675,7 +693,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -683,7 +701,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "" msgstr ""
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -141,7 +141,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -164,7 +164,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -181,7 +181,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "" msgstr ""
@ -201,11 +201,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "" 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" msgid "Download Insecure"
msgstr "" msgstr ""
@ -217,15 +217,15 @@ msgstr ""
msgid "Download Utility" msgid "Download Utility"
msgstr "" 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" msgid "E-Mail Profile"
msgstr "" 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" msgid "E-Mail Receiver Address"
msgstr "" 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" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
@ -233,7 +233,7 @@ msgstr ""
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -273,11 +273,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -331,7 +331,7 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -347,15 +347,15 @@ msgstr ""
msgid "Less Priority" msgid "Less Priority"
msgstr "" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -363,6 +363,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -371,7 +377,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -379,7 +385,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "" msgstr ""
@ -387,7 +393,7 @@ msgstr ""
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "" msgstr ""
@ -445,7 +451,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -460,7 +466,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -468,11 +474,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -490,11 +496,15 @@ msgstr ""
msgid "Report Directory" msgid "Report Directory"
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -535,7 +545,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -564,7 +574,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -606,7 +616,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -626,14 +644,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -650,7 +668,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" 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." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
@ -658,8 +676,8 @@ msgstr ""
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.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:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -675,7 +693,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -683,7 +701,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "" msgstr ""
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -141,7 +141,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -164,7 +164,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Avbryt" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -181,7 +181,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "" msgstr ""
@ -201,11 +201,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "" 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" msgid "Download Insecure"
msgstr "" msgstr ""
@ -217,15 +217,15 @@ msgstr "Nedlastingsparametre"
msgid "Download Utility" msgid "Download Utility"
msgstr "Nedlastingsverktøy" 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" msgid "E-Mail Profile"
msgstr "E-postprofil" 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" msgid "E-Mail Receiver Address"
msgstr "" 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" msgid "E-Mail Sender Address"
msgstr "E-postsenderadresse" msgstr "E-postsenderadresse"
@ -233,7 +233,7 @@ msgstr "E-postsenderadresse"
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "E-postemne" msgstr "E-postemne"
@ -273,11 +273,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -331,7 +331,7 @@ msgstr "Info"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -347,15 +347,15 @@ msgstr ""
msgid "Less Priority" msgid "Less Priority"
msgstr "" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -363,6 +363,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -371,7 +377,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -379,7 +385,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "" msgstr ""
@ -387,7 +393,7 @@ msgstr ""
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "" msgstr ""
@ -445,7 +451,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -460,7 +466,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Oversikt" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -468,11 +474,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -490,11 +496,15 @@ msgstr ""
msgid "Report Directory" msgid "Report Directory"
msgstr "Rapportmappe" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "Omstart" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -536,7 +546,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -565,7 +575,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -607,7 +617,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -627,14 +645,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -651,7 +669,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" 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." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
@ -659,8 +677,8 @@ msgstr ""
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Utløserforsinkelse" 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/allowlist.js:20
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -676,7 +694,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -684,7 +702,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "ASN's" msgstr "ASN's"
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Autodetectie" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -141,7 +141,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -164,7 +164,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Afbreken" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -181,7 +181,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "Landen" msgstr "Landen"
@ -201,11 +201,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "Tijdens download niet de SSL server certificaten controleren." 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" msgid "Download Insecure"
msgstr "Onbeveiligd downloaden" msgstr "Onbeveiligd downloaden"
@ -217,15 +217,15 @@ msgstr "Parameters downloaden"
msgid "Download Utility" msgid "Download Utility"
msgstr "Download hulpprogramma" 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" msgid "E-Mail Profile"
msgstr "E-Mail profiel" 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" msgid "E-Mail Receiver Address"
msgstr "E-Mail adres van ontvanger" 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" msgid "E-Mail Sender Address"
msgstr "E-Mail adres van verzender" msgstr "E-Mail adres van verzender"
@ -233,7 +233,7 @@ msgstr "E-Mail adres van verzender"
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "E-Mail onderwerp" msgstr "E-Mail onderwerp"
@ -273,11 +273,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -331,7 +331,7 @@ msgstr "Informatie"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -347,15 +347,15 @@ msgstr "Laagste prioriteit"
msgid "Less Priority" msgid "Less Priority"
msgstr "Lage prioriteit" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -363,6 +363,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "Lijst van beschikbare netwerkinterfaces die banIP starten." msgstr "Lijst van beschikbare netwerkinterfaces die banIP starten."
@ -371,7 +377,7 @@ msgstr "Lijst van beschikbare netwerkinterfaces die banIP starten."
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -379,7 +385,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "Log limiet" msgstr "Log limiet"
@ -387,7 +393,7 @@ msgstr "Log limiet"
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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 #, fuzzy
msgid "Log Terms" msgid "Log Terms"
msgstr "Log termen (sleutelwoorden)" msgstr "Log termen (sleutelwoorden)"
@ -446,7 +452,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "Normale prioriteit (standaard)" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -461,7 +467,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Overzicht" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
"Laat alleen het aantal regels in de log zien van de verdachte gebeurtenissen." "Laat alleen het aantal regels in de log zien van de verdachte gebeurtenissen."
@ -470,12 +476,12 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
"Profiel gebruikt voor 'msmtp' voor banIP E-Mail berichten/notificaties." "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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -493,11 +499,15 @@ msgstr ""
msgid "Report Directory" msgid "Report Directory"
msgstr "Rapportage 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "Herstart" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -540,7 +550,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "Afzender e-mailadres voor de banIP email meldingen." msgstr "Afzender e-mailadres voor de banIP email meldingen."
@ -569,7 +579,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -611,7 +621,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -631,14 +649,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -655,7 +673,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" 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." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
@ -663,8 +681,8 @@ msgstr ""
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.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:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -680,7 +698,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -688,7 +706,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -15,31 +15,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -51,7 +51,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -59,11 +59,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -71,7 +71,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "ASN-y" msgstr "ASN-y"
@ -100,21 +100,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -122,11 +122,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Automatyczne wykrywanie" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -142,7 +142,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -150,7 +150,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -165,7 +165,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Anuluj" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -182,7 +182,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "Kraje" msgstr "Kraje"
@ -202,11 +202,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "Nie sprawdzaj certyfikatów SSL serwera podczas pobierania." 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" msgid "Download Insecure"
msgstr "Niezabezpieczone pobieranie" msgstr "Niezabezpieczone pobieranie"
@ -218,15 +218,15 @@ msgstr "Parametry pobierania"
msgid "Download Utility" msgid "Download Utility"
msgstr "Narzędzie pobierania" 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" msgid "E-Mail Profile"
msgstr "Profil e-mail" 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" msgid "E-Mail Receiver Address"
msgstr "Adres e-mail odbiorcy" 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" msgid "E-Mail Sender Address"
msgstr "Adres e-mail nadawcy" msgstr "Adres e-mail nadawcy"
@ -234,7 +234,7 @@ msgstr "Adres e-mail nadawcy"
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "Temat e-mail" msgstr "Temat e-mail"
@ -274,11 +274,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -332,7 +332,7 @@ msgstr "Informacje"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -348,15 +348,15 @@ msgstr "Najniższy priorytet"
msgid "Less Priority" msgid "Less Priority"
msgstr "Mniejszy priorytet" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -364,6 +364,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -373,7 +379,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -381,7 +387,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "Limit dziennika" msgstr "Limit dziennika"
@ -389,7 +395,7 @@ msgstr "Limit dziennika"
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "Warunki dziennika" msgstr "Warunki dziennika"
@ -447,7 +453,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "Normalny priorytet (domyślny)" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -462,7 +468,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Przegląd" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
"Analizuj tylko ostatnią podaną liczbę wpisów w dzienniku w poszukiwaniu " "Analizuj tylko ostatnią podaną liczbę wpisów w dzienniku w poszukiwaniu "
@ -472,12 +478,12 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
"Profil używany przez \"msmtp\" dla wiadomości e-mail z powiadomieniem banIP." "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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -495,11 +501,15 @@ msgstr "Przeładuj"
msgid "Report Directory" msgid "Report Directory"
msgstr "Katalog raportów" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "Restartuj" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -540,7 +550,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "Adres nadawcy wiadomości e-mail z powiadomieniem banIP." msgstr "Adres nadawcy wiadomości e-mail z powiadomieniem banIP."
@ -569,7 +579,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -611,7 +621,15 @@ msgstr "Katalog docelowy dla plików raportów związanych z IPSet."
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "Katalog docelowy dla kopii zapasowych skompresowanej listy źródeł." 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -631,14 +649,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -655,7 +673,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "Sygnatura czasowa" 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." msgid "Topic for banIP notification E-Mails."
msgstr "Temat dla wiadomości e-mail z powiadomieniem banIP." msgstr "Temat dla wiadomości e-mail z powiadomieniem banIP."
@ -663,8 +681,8 @@ msgstr "Temat dla wiadomości e-mail z powiadomieniem banIP."
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Opóźnienie wyzwalacza" 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/allowlist.js:20
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -680,7 +698,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -688,7 +706,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "ASNs" msgstr "ASNs"
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Deteção automática" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -141,7 +141,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -164,7 +164,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Cancelar" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -181,7 +181,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "Países" msgstr "Países"
@ -201,11 +201,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "Não verificar os certificados de SSL do servidor durante a descarrega." 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" msgid "Download Insecure"
msgstr "Descarregar inseguro" msgstr "Descarregar inseguro"
@ -217,15 +217,15 @@ msgstr "Parâmetros de Descarregamento"
msgid "Download Utility" msgid "Download Utility"
msgstr "Ferramenta para Descarregar" 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" msgid "E-Mail Profile"
msgstr "Perfil de e-mail" 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" msgid "E-Mail Receiver Address"
msgstr "Endereço de e-mail do destinatário" 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" msgid "E-Mail Sender Address"
msgstr "Endereço de e-mail do remetente" msgstr "Endereço de e-mail do remetente"
@ -233,7 +233,7 @@ msgstr "Endereço de e-mail do remetente"
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "Assunto do e-mail" msgstr "Assunto do e-mail"
@ -273,11 +273,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -331,7 +331,7 @@ msgstr "Informação"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -347,15 +347,15 @@ msgstr "Mínima Prioridade"
msgid "Less Priority" msgid "Less Priority"
msgstr "Menor Prioridade" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -363,6 +363,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -372,7 +378,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -380,7 +386,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "Limite do Registo" msgstr "Limite do Registo"
@ -388,7 +394,7 @@ msgstr "Limite do Registo"
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "Termos do registo" msgstr "Termos do registo"
@ -446,7 +452,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "Prioridade Normal (padrão)" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -461,7 +467,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Visão Geral" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
"Analise apenas o último número declarado das entradas de registo na busca " "Analise apenas o último número declarado das entradas de registo na busca "
@ -471,11 +477,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." 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." 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -493,11 +499,15 @@ msgstr "Recarregar"
msgid "Report Directory" msgid "Report Directory"
msgstr "Diretório de Relatórios" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "Reiniciar" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -538,7 +548,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "Endereço do remetente para os e-mails de notificação do banIP." msgstr "Endereço do remetente para os e-mails de notificação do banIP."
@ -567,7 +577,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -610,7 +620,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "O diretório de destino para os backups compactados da lista de origem." 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -630,14 +648,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -654,7 +672,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "Marca de Tempo" 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." msgid "Topic for banIP notification E-Mails."
msgstr "Tópico para e-mails de notificação do banIP." msgstr "Tópico para e-mails de notificação do banIP."
@ -662,8 +680,8 @@ msgstr "Tópico para e-mails de notificação do banIP."
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Atraso do Gatilho" 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/allowlist.js:20
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -679,7 +697,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -687,7 +705,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "ASNs" msgstr "ASNs"
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Detecção Automática" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -141,7 +141,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -164,7 +164,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Cancelar" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -181,7 +181,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "Países" msgstr "Países"
@ -201,11 +201,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "Não verifique os certificados do servidor SSL durante o 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" msgid "Download Insecure"
msgstr "Download inseguro" msgstr "Download inseguro"
@ -217,15 +217,15 @@ msgstr "Parâmetros de Download"
msgid "Download Utility" msgid "Download Utility"
msgstr "Ferramenta para Baixar" 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" msgid "E-Mail Profile"
msgstr "E-Mail do Perfil" 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" msgid "E-Mail Receiver Address"
msgstr "Endereço de E-Mail do Destinatário" 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" msgid "E-Mail Sender Address"
msgstr "Endereço de E-Mail do Remetente" msgstr "Endereço de E-Mail do Remetente"
@ -233,7 +233,7 @@ msgstr "Endereço de E-Mail do Remetente"
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "Assunto do E-Mail" msgstr "Assunto do E-Mail"
@ -273,11 +273,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -331,7 +331,7 @@ msgstr "Informações"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -347,15 +347,15 @@ msgstr "Mínima Prioridade"
msgid "Less Priority" msgid "Less Priority"
msgstr "Menor Prioridade" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -363,6 +363,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -372,7 +378,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -380,7 +386,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "Limite do Registro" msgstr "Limite do Registro"
@ -388,7 +394,7 @@ msgstr "Limite do Registro"
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "Termos do registro" msgstr "Termos do registro"
@ -446,7 +452,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "Prioridade Normal (padrão)" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -461,7 +467,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Visão geral" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
"Analise apenas o último número declarado das entradas de registro na busca " "Analise apenas o último número declarado das entradas de registro na busca "
@ -471,11 +477,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." 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." 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -493,11 +499,15 @@ msgstr "Recarregar"
msgid "Report Directory" msgid "Report Directory"
msgstr "Diretório do Relatório" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "Reiniciar" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -538,7 +548,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "Endereço do remetente para os e-mails de notificação do banIP." msgstr "Endereço do remetente para os e-mails de notificação do banIP."
@ -567,7 +577,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -610,7 +620,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "O diretório de destino para os backups compactados da lista de origem." 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -630,14 +648,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -654,7 +672,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "Marca de Tempo" 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." msgid "Topic for banIP notification E-Mails."
msgstr "Tópico para e-mails de notificação do banIP." msgstr "Tópico para e-mails de notificação do banIP."
@ -662,8 +680,8 @@ msgstr "Tópico para e-mails de notificação do banIP."
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Gatilho de Atraso" 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/allowlist.js:20
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -679,7 +697,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -687,7 +705,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -15,31 +15,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -51,7 +51,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -59,11 +59,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -71,7 +71,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "ASNs" msgstr "ASNs"
@ -100,21 +100,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -122,11 +122,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Detecție automată" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -142,7 +142,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -150,7 +150,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -165,7 +165,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Anulare" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -182,7 +182,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "Țări" msgstr "Țări"
@ -202,11 +202,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "Nu verificați certificatele serverului SSL în timpul descărcării." 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" msgid "Download Insecure"
msgstr "Descărcați Insecure" msgstr "Descărcați Insecure"
@ -218,15 +218,15 @@ msgstr "Parametrii de descărcare"
msgid "Download Utility" msgid "Download Utility"
msgstr "Utilitar descărcare" 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" msgid "E-Mail Profile"
msgstr "Profil de e-mail" 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" msgid "E-Mail Receiver Address"
msgstr "Adresa de e-mail a destinatarului" 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" msgid "E-Mail Sender Address"
msgstr "Adresa expeditorului de e-mail" msgstr "Adresa expeditorului de e-mail"
@ -234,7 +234,7 @@ msgstr "Adresa expeditorului de e-mail"
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "Subiect E-Mail" msgstr "Subiect E-Mail"
@ -274,11 +274,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -332,7 +332,7 @@ msgstr "Informație"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -348,15 +348,15 @@ msgstr "Cea mai mică prioritate"
msgid "Less Priority" msgid "Less Priority"
msgstr "Prioritate mai mică" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -364,6 +364,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -373,7 +379,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -381,7 +387,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "Limita de jurnal" msgstr "Limita de jurnal"
@ -389,7 +395,7 @@ msgstr "Limita de jurnal"
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "Termeni de jurnal" msgstr "Termeni de jurnal"
@ -447,7 +453,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "Prioritate normală (implicită)" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -462,7 +468,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Prezentare generală" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
"Analizează numai ultimul număr declarat de intrări de jurnal pentru " "Analizează numai ultimul număr declarat de intrări de jurnal pentru "
@ -472,12 +478,12 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
"Profilul utilizat de 'msmtp' pentru mesajele electronice de notificare banIP." "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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -495,11 +501,15 @@ msgstr ""
msgid "Report Directory" msgid "Report Directory"
msgstr "Director de rapoarte" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "Reporniți" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -540,7 +550,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "Adresa expeditorului pentru e-mailurile de notificare banIP." msgstr "Adresa expeditorului pentru e-mailurile de notificare banIP."
@ -569,7 +579,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -613,7 +623,15 @@ msgstr ""
"Directorul de destinație pentru copiile de rezervă comprimate ale listei de " "Directorul de destinație pentru copiile de rezervă comprimate ale listei de "
"surse." "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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -633,14 +651,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -657,7 +675,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "Înregistrarea timpului" 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." msgid "Topic for banIP notification E-Mails."
msgstr "Subiect pentru e-mailurile de notificare banIP." msgstr "Subiect pentru e-mailurile de notificare banIP."
@ -665,8 +683,8 @@ msgstr "Subiect pentru e-mailurile de notificare banIP."
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Intârzierea declanșării" 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/allowlist.js:20
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -682,7 +700,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -690,7 +708,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -15,31 +15,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -51,7 +51,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -59,11 +59,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -71,7 +71,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "Автономные системы" msgstr "Автономные системы"
@ -100,21 +100,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -122,11 +122,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Автоопределение" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -142,7 +142,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -150,7 +150,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -165,7 +165,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Отмена" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -182,7 +182,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "Страны" msgstr "Страны"
@ -202,11 +202,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "Не проверять SSL сертификаты сервера во время загрузки." 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" msgid "Download Insecure"
msgstr "Небезопасная загрузка" msgstr "Небезопасная загрузка"
@ -218,15 +218,15 @@ msgstr "Параметры загрузки"
msgid "Download Utility" msgid "Download Utility"
msgstr "Утилита для загрузки" 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" msgid "E-Mail Profile"
msgstr "Профиль электронной почты" 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" msgid "E-Mail Receiver Address"
msgstr "Адрес получателя" 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" msgid "E-Mail Sender Address"
msgstr "Адрес отправителя" msgstr "Адрес отправителя"
@ -234,7 +234,7 @@ msgstr "Адрес отправителя"
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "Тема" msgstr "Тема"
@ -274,11 +274,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -332,7 +332,7 @@ msgstr "Информация"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -348,15 +348,15 @@ msgstr "Наименьший приоритет"
msgid "Less Priority" msgid "Less Priority"
msgstr "Меньший приоритет" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -364,6 +364,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
#, fuzzy #, fuzzy
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
@ -373,7 +379,7 @@ msgstr "Список доступных сетевых интерфейсов з
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -381,7 +387,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "" msgstr ""
@ -389,7 +395,7 @@ msgstr ""
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "" msgstr ""
@ -447,7 +453,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -462,7 +468,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Обзор" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -470,11 +476,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -492,11 +498,15 @@ msgstr "Перезапустить"
msgid "Report Directory" msgid "Report Directory"
msgstr "Папка для отчётов" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "Перезапустить" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -537,7 +547,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -566,7 +576,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -608,7 +618,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -628,14 +646,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -652,7 +670,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" 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." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
@ -660,8 +678,8 @@ msgstr ""
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Задержка запуска" msgstr "Задержка запуска"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.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:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -677,7 +695,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -685,7 +703,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "" msgstr ""
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -141,7 +141,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -164,7 +164,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -181,7 +181,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "" msgstr ""
@ -201,11 +201,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "" 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" msgid "Download Insecure"
msgstr "" msgstr ""
@ -217,15 +217,15 @@ msgstr ""
msgid "Download Utility" msgid "Download Utility"
msgstr "Nástroj na sťahovanie" 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" msgid "E-Mail Profile"
msgstr "" 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" msgid "E-Mail Receiver Address"
msgstr "" 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" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
@ -233,7 +233,7 @@ msgstr ""
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -273,11 +273,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -331,7 +331,7 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -347,15 +347,15 @@ msgstr ""
msgid "Less Priority" msgid "Less Priority"
msgstr "" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -363,6 +363,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -371,7 +377,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -379,7 +385,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "" msgstr ""
@ -387,7 +393,7 @@ msgstr ""
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "" msgstr ""
@ -445,7 +451,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -460,7 +466,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Prehľad" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -468,11 +474,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -490,11 +496,15 @@ msgstr ""
msgid "Report Directory" msgid "Report Directory"
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -535,7 +545,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -564,7 +574,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -606,7 +616,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -626,14 +644,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -650,7 +668,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" 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." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
@ -658,8 +676,8 @@ msgstr ""
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.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:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -675,7 +693,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -683,7 +701,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "ASN:er" msgstr "ASN:er"
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Automatisk detektering" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -141,7 +141,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -164,7 +164,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Avbryt" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -181,7 +181,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "" msgstr ""
@ -201,11 +201,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "" 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" msgid "Download Insecure"
msgstr "Ladda ner osäkert" msgstr "Ladda ner osäkert"
@ -217,15 +217,15 @@ msgstr "Ladda ner parametrar"
msgid "Download Utility" msgid "Download Utility"
msgstr "Ladda ner verktyget" 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" msgid "E-Mail Profile"
msgstr "E-postprofil" 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" msgid "E-Mail Receiver Address"
msgstr "" 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" msgid "E-Mail Sender Address"
msgstr "Avsändaradress för e-post" msgstr "Avsändaradress för e-post"
@ -233,7 +233,7 @@ msgstr "Avsändaradress för e-post"
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "E-postämne" msgstr "E-postämne"
@ -273,11 +273,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -331,7 +331,7 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -347,15 +347,15 @@ msgstr ""
msgid "Less Priority" msgid "Less Priority"
msgstr "" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -363,6 +363,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -371,7 +377,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -379,7 +385,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "" msgstr ""
@ -387,7 +393,7 @@ msgstr ""
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "" msgstr ""
@ -445,7 +451,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -460,7 +466,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Överblick" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -468,11 +474,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -490,11 +496,15 @@ msgstr "Ladda om"
msgid "Report Directory" msgid "Report Directory"
msgstr "Rapportkatalog" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "Starta om" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -535,7 +545,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -564,7 +574,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -606,7 +616,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -626,14 +644,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -650,7 +668,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" 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." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
@ -658,8 +676,8 @@ msgstr ""
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.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:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -675,7 +693,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -683,7 +701,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "" msgstr ""
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -141,7 +141,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -164,7 +164,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -181,7 +181,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "" msgstr ""
@ -201,11 +201,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "" 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" msgid "Download Insecure"
msgstr "" msgstr ""
@ -217,15 +217,15 @@ msgstr ""
msgid "Download Utility" msgid "Download Utility"
msgstr "" 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" msgid "E-Mail Profile"
msgstr "" 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" msgid "E-Mail Receiver Address"
msgstr "" 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" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
@ -233,7 +233,7 @@ msgstr ""
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -273,11 +273,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -331,7 +331,7 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -347,15 +347,15 @@ msgstr ""
msgid "Less Priority" msgid "Less Priority"
msgstr "" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -363,6 +363,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -371,7 +377,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -379,7 +385,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "" msgstr ""
@ -387,7 +393,7 @@ msgstr ""
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "" msgstr ""
@ -445,7 +451,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -460,7 +466,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -468,11 +474,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -490,11 +496,15 @@ msgstr ""
msgid "Report Directory" msgid "Report Directory"
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -535,7 +545,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -564,7 +574,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -606,7 +616,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -626,14 +644,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -650,7 +668,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" 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." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
@ -658,8 +676,8 @@ msgstr ""
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.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:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -675,7 +693,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -683,7 +701,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -5,31 +5,31 @@ msgstr "Content-Type: text/plain; charset=UTF-8"
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -41,7 +41,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -49,11 +49,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -61,7 +61,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "" msgstr ""
@ -90,21 +90,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -112,11 +112,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -132,7 +132,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -140,7 +140,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -155,7 +155,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -172,7 +172,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "" msgstr ""
@ -192,11 +192,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "" 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" msgid "Download Insecure"
msgstr "" msgstr ""
@ -208,15 +208,15 @@ msgstr ""
msgid "Download Utility" msgid "Download Utility"
msgstr "" 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" msgid "E-Mail Profile"
msgstr "" 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" msgid "E-Mail Receiver Address"
msgstr "" 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" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
@ -224,7 +224,7 @@ msgstr ""
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -264,11 +264,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -322,7 +322,7 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -338,15 +338,15 @@ msgstr ""
msgid "Less Priority" msgid "Less Priority"
msgstr "" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -354,6 +354,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -362,7 +368,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -370,7 +376,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "" msgstr ""
@ -378,7 +384,7 @@ msgstr ""
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "" msgstr ""
@ -436,7 +442,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -451,7 +457,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -459,11 +465,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -481,11 +487,15 @@ msgstr ""
msgid "Report Directory" msgid "Report Directory"
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -526,7 +536,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -555,7 +565,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -597,7 +607,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -617,14 +635,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -641,7 +659,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" 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." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
@ -649,8 +667,8 @@ msgstr ""
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.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:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -666,7 +684,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -674,7 +692,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "ASN'ler" msgstr "ASN'ler"
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Otomatik Algılama" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -141,7 +141,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -164,7 +164,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "İptal" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -181,7 +181,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "Ülkeler" msgstr "Ülkeler"
@ -201,11 +201,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "İndirme sırasında SSL sunucu sertifikalarını kontrol etme." 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" msgid "Download Insecure"
msgstr "Güvensiz İndir" msgstr "Güvensiz İndir"
@ -217,15 +217,15 @@ msgstr "İndirme Parametreleri"
msgid "Download Utility" msgid "Download Utility"
msgstr "İndirme Aracı" 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" msgid "E-Mail Profile"
msgstr "E-Posta Profili" 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" msgid "E-Mail Receiver Address"
msgstr "E-Posta Alıcı Adresi" 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" msgid "E-Mail Sender Address"
msgstr "E-Posta Gönderen Adresi" msgstr "E-Posta Gönderen Adresi"
@ -233,7 +233,7 @@ msgstr "E-Posta Gönderen Adresi"
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "E-Posta Konusu" msgstr "E-Posta Konusu"
@ -273,11 +273,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -331,7 +331,7 @@ msgstr "Bilgi"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -347,15 +347,15 @@ msgstr "En Az Öncelik"
msgid "Less Priority" msgid "Less Priority"
msgstr "Daha Az Öncelik" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -363,6 +363,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." 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." msgstr "BanIP başlangıcını tetiklemek için mevcut ağ arayüzlerinin listesi."
@ -371,7 +377,7 @@ msgstr "BanIP başlangıcını tetiklemek için mevcut ağ arayüzlerinin listes
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -379,7 +385,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "Günlük Sınırı" msgstr "Günlük Sınırı"
@ -387,7 +393,7 @@ msgstr "Günlük Sınırı"
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "Günlük Şartları" msgstr "Günlük Şartları"
@ -445,7 +451,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "Normal Öncelik (varsayılan)" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -460,7 +466,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Genel bakış" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
"Şüpheli olaylar için yalnızca son belirtilen günlük girişi sayısını " "Şüpheli olaylar için yalnızca son belirtilen günlük girişi sayısını "
@ -470,11 +476,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "BanIP bildirim e-postaları için 'msmtp' tarafından kullanılan profil." 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -492,11 +498,15 @@ msgstr "Yeniden yükle"
msgid "Report Directory" msgid "Report Directory"
msgstr "Rapor Dizini" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "Yeniden başlat" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -537,7 +547,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "BanIP bildirim e-postaları için gönderen adresi." msgstr "BanIP bildirim e-postaları için gönderen adresi."
@ -566,7 +576,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -608,7 +618,15 @@ msgstr "IPSet ile ilgili rapor dosyaları için hedef dizin."
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "Sıkıştırılmış kaynak listesi yedeklemeleri için hedef dizin." 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -628,14 +646,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -652,7 +670,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "Zaman damgası" 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." msgid "Topic for banIP notification E-Mails."
msgstr "BanIP bildirim e-postaları için konu." msgstr "BanIP bildirim e-postaları için konu."
@ -660,8 +678,8 @@ msgstr "BanIP bildirim e-postaları için konu."
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Tetikleme Gecikmesi" 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/allowlist.js:20
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -677,7 +695,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -685,7 +703,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -15,31 +15,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -51,7 +51,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -59,11 +59,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -71,7 +71,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "" msgstr ""
@ -100,21 +100,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -122,11 +122,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -142,7 +142,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -150,7 +150,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -165,7 +165,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Скасувати" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -182,7 +182,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "" msgstr ""
@ -202,11 +202,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "Не перевіряти SSL-сертифікати сервера під час завантаження." 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" msgid "Download Insecure"
msgstr "Завантажувати небезпечним шляхом" msgstr "Завантажувати небезпечним шляхом"
@ -218,15 +218,15 @@ msgstr "Параметри завантаження"
msgid "Download Utility" msgid "Download Utility"
msgstr "Утиліта для завантаження" 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" msgid "E-Mail Profile"
msgstr "E-Mail профіль" 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" msgid "E-Mail Receiver Address"
msgstr "E-Mail адреса отримувача" 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" msgid "E-Mail Sender Address"
msgstr "E-Mail адреса відправника" msgstr "E-Mail адреса відправника"
@ -234,7 +234,7 @@ msgstr "E-Mail адреса відправника"
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "Тема" msgstr "Тема"
@ -274,11 +274,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -332,7 +332,7 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -348,15 +348,15 @@ msgstr ""
msgid "Less Priority" msgid "Less Priority"
msgstr "" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -364,6 +364,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -372,7 +378,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -380,7 +386,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "" msgstr ""
@ -388,7 +394,7 @@ msgstr ""
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "" msgstr ""
@ -446,7 +452,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -461,7 +467,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Огляд" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -469,11 +475,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -491,11 +497,15 @@ msgstr ""
msgid "Report Directory" msgid "Report Directory"
msgstr "Тека для звітів" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "Перезапустити" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -536,7 +546,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -565,7 +575,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -607,7 +617,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -627,14 +645,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -651,7 +669,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" 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." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
@ -659,8 +677,8 @@ msgstr ""
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Затримка запуску" msgstr "Затримка запуску"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.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:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -676,7 +694,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -684,7 +702,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "" msgstr ""
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -141,7 +141,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -164,7 +164,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -181,7 +181,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "" msgstr ""
@ -201,11 +201,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "" 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" msgid "Download Insecure"
msgstr "" msgstr ""
@ -217,15 +217,15 @@ msgstr ""
msgid "Download Utility" msgid "Download Utility"
msgstr "" 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" msgid "E-Mail Profile"
msgstr "" 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" msgid "E-Mail Receiver Address"
msgstr "" 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" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
@ -233,7 +233,7 @@ msgstr ""
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -273,11 +273,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -331,7 +331,7 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -347,15 +347,15 @@ msgstr ""
msgid "Less Priority" msgid "Less Priority"
msgstr "" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -363,6 +363,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -371,7 +377,7 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -379,7 +385,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "" msgstr ""
@ -387,7 +393,7 @@ msgstr ""
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "" msgstr ""
@ -445,7 +451,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -460,7 +466,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -468,11 +474,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -490,11 +496,15 @@ msgstr ""
msgid "Report Directory" msgid "Report Directory"
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -535,7 +545,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -564,7 +574,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -606,7 +616,15 @@ msgstr ""
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -626,14 +644,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -650,7 +668,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" 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." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
@ -658,8 +676,8 @@ msgstr ""
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Kích hoạt độ trễ" 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/allowlist.js:20
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -676,7 +694,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -684,7 +702,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "平均取样数" msgstr "平均取样数"
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "自动检测" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -141,7 +141,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -164,7 +164,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "取消" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -181,7 +181,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "地区" msgstr "地区"
@ -201,11 +201,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "下载期间不检查 SSL 服务器证书。" 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" msgid "Download Insecure"
msgstr "下载不安全" msgstr "下载不安全"
@ -217,15 +217,15 @@ msgstr "下载参数"
msgid "Download Utility" msgid "Download Utility"
msgstr "下载工具" 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" msgid "E-Mail Profile"
msgstr "电子邮件概要" 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" msgid "E-Mail Receiver Address"
msgstr "电子邮件收件人地址" 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" msgid "E-Mail Sender Address"
msgstr "电子邮件发件人地址" msgstr "电子邮件发件人地址"
@ -233,7 +233,7 @@ msgstr "电子邮件发件人地址"
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "电子邮件主题" msgstr "电子邮件主题"
@ -273,11 +273,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -331,7 +331,7 @@ msgstr "信息"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -347,15 +347,15 @@ msgstr "最低优先级"
msgid "Less Priority" msgid "Less Priority"
msgstr "较低优先级" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -363,6 +363,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "触发 banIP 启动的可用网络接口列表。" msgstr "触发 banIP 启动的可用网络接口列表。"
@ -371,7 +377,7 @@ msgstr "触发 banIP 启动的可用网络接口列表。"
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -379,7 +385,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "日志限制" msgstr "日志限制"
@ -387,7 +393,7 @@ msgstr "日志限制"
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "日志项" msgstr "日志项"
@ -445,7 +451,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "正常优先级(默认)" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -460,7 +466,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "概览" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "仅解析最后声明的可疑事件的日志条目数量。" msgstr "仅解析最后声明的可疑事件的日志条目数量。"
@ -468,11 +474,11 @@ msgstr "仅解析最后声明的可疑事件的日志条目数量。"
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "“msmtp”所用的 banIP 电子邮件通知配置。" 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -490,11 +496,15 @@ msgstr "重新载入"
msgid "Report Directory" msgid "Report Directory"
msgstr "报告目录" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "重启" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -535,7 +545,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "banIP 通知邮件的发送地址。" msgstr "banIP 通知邮件的发送地址。"
@ -564,7 +574,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -606,7 +616,15 @@ msgstr "IPSet 相关的报告文件的目标目录。"
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "压缩的源列表备份的目标目录。" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -626,14 +644,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -650,7 +668,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "时间戳" 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." msgid "Topic for banIP notification E-Mails."
msgstr "banIP 通知邮件的主题。" msgstr "banIP 通知邮件的主题。"
@ -658,8 +676,8 @@ msgstr "banIP 通知邮件的主题。"
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "触发延时" msgstr "触发延时"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.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:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -675,7 +693,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -683,7 +701,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -14,31 +14,31 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" 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" msgid "-100"
msgstr "" 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)" msgid "-200 (default)"
msgstr "" 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" msgid "-300"
msgstr "" 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" msgid "-400"
msgstr "" 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" msgid "0"
msgstr "" 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)" msgid "100 (default)"
msgstr "" 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" msgid "1000"
msgstr "" msgstr ""
@ -50,7 +50,7 @@ msgstr ""
msgid "2048" msgid "2048"
msgstr "" 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" msgid "250"
msgstr "" msgstr ""
@ -58,11 +58,11 @@ msgstr ""
msgid "4096" msgid "4096"
msgstr "" 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" msgid "50"
msgstr "" 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" msgid "500"
msgstr "" msgstr ""
@ -70,7 +70,7 @@ msgstr ""
msgid "512" msgid "512"
msgstr "" 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" msgid "ASNs"
msgstr "平均取樣數" msgstr "平均取樣數"
@ -99,21 +99,21 @@ msgstr ""
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" 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" msgid "Allowlist Only"
msgstr "" 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 "" msgid ""
"Allowlist modifications have been saved, restart banIP that changes take " "Allowlist modifications have been saved, restart banIP that changes take "
"effect." "effect."
msgstr "" 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" msgid "Auto Allowlist"
msgstr "" 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" msgid "Auto Blocklist"
msgstr "" msgstr ""
@ -121,11 +121,11 @@ msgstr ""
msgid "Auto Detection" msgid "Auto Detection"
msgstr "自動偵測" 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." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" 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." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
@ -141,7 +141,7 @@ msgstr ""
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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" msgid "Blocklist Expiry"
msgstr "" msgstr ""
@ -149,7 +149,7 @@ msgstr ""
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" 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 "" msgid ""
"Blocklist modifications have been saved, restart banIP that changes take " "Blocklist modifications have been saved, restart banIP that changes take "
"effect." "effect."
@ -164,7 +164,7 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "取消" 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" msgid "Chain Priority"
msgstr "" msgstr ""
@ -181,7 +181,7 @@ msgid ""
"documentation</a>" "documentation</a>"
msgstr "" 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" msgid "Countries"
msgstr "地區" msgstr "地區"
@ -201,11 +201,11 @@ msgid ""
"utilities automatically." "utilities automatically."
msgstr "" 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." msgid "Don't check SSL server certificates during download."
msgstr "下載期間不檢查 SSL 伺服器證書。" 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" msgid "Download Insecure"
msgstr "下載不安全" msgstr "下載不安全"
@ -217,15 +217,15 @@ msgstr "下載參數"
msgid "Download Utility" msgid "Download Utility"
msgstr "下載工具" 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" msgid "E-Mail Profile"
msgstr "電郵設定檔" 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" msgid "E-Mail Receiver Address"
msgstr "電郵收件人位址" 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" msgid "E-Mail Sender Address"
msgstr "電郵寄件人位址" msgstr "電郵寄件人位址"
@ -233,7 +233,7 @@ msgstr "電郵寄件人位址"
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" 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" msgid "E-Mail Topic"
msgstr "電郵主旨" msgstr "電郵主旨"
@ -273,11 +273,11 @@ msgstr ""
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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" msgid "Feed Selection"
msgstr "" msgstr ""
@ -331,7 +331,7 @@ msgstr "資訊"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" 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" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
@ -347,15 +347,15 @@ msgstr "最低優先順序"
msgid "Less Priority" msgid "Less Priority"
msgstr "較低優先順序" 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." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" 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." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
@ -363,6 +363,12 @@ msgstr ""
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "觸發 banIP 啟動的可用網路介面列表。" msgstr "觸發 banIP 啟動的可用網路介面列表。"
@ -371,7 +377,7 @@ msgstr "觸發 banIP 啟動的可用網路介面列表。"
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" 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" msgid "Log Count"
msgstr "" msgstr ""
@ -379,7 +385,7 @@ msgstr ""
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" 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" msgid "Log Limit"
msgstr "日誌限制" msgstr "日誌限制"
@ -387,7 +393,7 @@ msgstr "日誌限制"
msgid "Log Settings" msgid "Log Settings"
msgstr "" 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" msgid "Log Terms"
msgstr "日誌項目" msgstr "日誌項目"
@ -445,7 +451,7 @@ msgstr ""
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "正常優先順序 (預設)" 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 "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
@ -460,7 +466,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "概覽" 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." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "僅解析最後宣告的可疑事件的日誌項目數量。" msgstr "僅解析最後宣告的可疑事件的日誌項目數量。"
@ -468,11 +474,11 @@ msgstr "僅解析最後宣告的可疑事件的日誌項目數量。"
msgid "Processing Log" msgid "Processing Log"
msgstr "" 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." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "「msmtp」所用的 banIP 電子郵件通知設定。" 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 "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -490,11 +496,15 @@ msgstr "重新載入"
msgid "Report Directory" msgid "Report Directory"
msgstr "報告目錄" 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 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
msgid "Restart" msgid "Restart"
msgstr "重新啟動" 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." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -535,7 +545,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" 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." msgid "Sender address for banIP notification E-Mails."
msgstr "banIP 通知郵件的傳送位址。" msgstr "banIP 通知郵件的傳送位址。"
@ -564,7 +574,7 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" 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 "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -606,7 +616,15 @@ msgstr "IPSet 相關的報告檔案的目的目錄。"
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed source list backups."
msgstr "壓縮的來源列表備份的目的目錄。" 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 "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -626,14 +644,14 @@ msgid ""
"The syslog output, prefiltered for banIP-related processing log entries only." "The syslog output, prefiltered for banIP-related processing log entries only."
msgstr "" 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 "" msgid ""
"This is the local banIP allowlist that will permit certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
"IPv6 address or domain name per line." "IPv6 address or domain name per line."
msgstr "" 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 "" msgid ""
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR " "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/" "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@ -650,7 +668,7 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "時間戳" 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." msgid "Topic for banIP notification E-Mails."
msgstr "banIP 通知郵件的主題。" msgstr "banIP 通知郵件的主題。"
@ -658,8 +676,8 @@ msgstr "banIP 通知郵件的主題。"
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "觸發延遲" msgstr "觸發延遲"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.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:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
@ -675,7 +693,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" 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" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -683,7 +701,7 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" 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" msgid "WAN-Input Chain"
msgstr "" msgstr ""

View file

@ -46,7 +46,7 @@
"/usr/sbin/logread -e banIP/": [ "/usr/sbin/logread -e banIP/": [
"exec" "exec"
], ],
"/usr/sbin/nft -tj list table inet banIP": [ "/usr/sbin/nft -tj list ruleset": [
"exec" "exec"
], ],
"/etc/init.d/banip stop": [ "/etc/init.d/banip stop": [