if (!value) {
return true;
}
- if (!value.match(/^(http:\/\/|https:\/\/)[A-Za-z0-9\/\.\-_\?\&=]+$/)) {
+ if (!value.match(/^(http:\/\/|https:\/\/)[A-Za-z0-9\/\.\-_\?\&\+=~#]+$/)) {
return _('Protocol/URL format not supported');
}
return true;
if (!value) {
return true;
}
- if (!value.match(/^(http:\/\/|https:\/\/)[A-Za-z0-9\/\.\-_\?\&=:]+$/)) {
+ if (!value.match(/^(http:\/\/|https:\/\/)[A-Za-z0-9\/\.\-_\?\&\+=:~#]+$/)) {
return _('Protocol/URL format not supported');
}
return true;
render: function (result) {
let m, s, o;
- m = new form.Map('banip', 'banIP', _('Configuration of the banIP package to ban incoming and outgoing ip addresses/subnets via Sets in nftables. \
+ m = new form.Map('banip', 'banIP', _('Configuration of the banIP package to ban incoming and outgoing IPs via named nftables Sets. \
For further information <a href="https://github.com/openwrt/packages/blob/master/net/banip/files/README.md" target="_blank" rel="noreferrer noopener" >check the online documentation</a>'));
/*
s.tab('adv_chain', _('Chain/Set Settings'));
s.tab('adv_log', _('Log Settings'));
s.tab('adv_email', _('E-Mail Settings'));
- s.tab('feeds', _('Blocklist Feeds'));
+ s.tab('feeds', _('Feed Selection'));
/*
general settings tab
o.optional = true;
o.rmempty = true;
- o = s.taboption('general', form.Flag, 'ban_deduplicate', _('Deduplicate IPs'), _('Deduplicate IP addresses across all active Sets and and tidy up the local blocklist.'));
- o.default = 1
- o.rmempty = false;
-
- o = s.taboption('general', form.Flag, 'ban_loginput', _('Log WAN-Input'), _('Log suspicious incoming WAN packets (dropped).'));
- o.default = 1
- o.rmempty = false;
+ o = s.taboption('general', form.ListValue, 'ban_fetchretry', _('Download Retries'), _('Number of download attempts in case of an error (not supported by uclient-fetch).'));
+ o.value('1', _('1'));
+ o.value('3', _('3'));
+ o.value('5', _('5 (default)'));
+ o.value('10', _('10'));
+ o.value('20', _('20'));
- o = s.taboption('general', form.Flag, 'ban_logforwardwan', _('Log WAN-Forward'), _('Log suspicious forwarded WAN packets (dropped).'));
- o.default = 1
- o.rmempty = false;
+ o.optional = true;
+ o.rmempty = true;
- o = s.taboption('general', form.Flag, 'ban_logforwardlan', _('Log LAN-Forward'), _('Log suspicious forwarded LAN packets (rejected).'));
- o.rmempty = false;
+ o = s.taboption('general', form.Flag, 'ban_fetchinsecure', _('Download Insecure'), _('Don\'t check SSL server certificates during download.'));
+ o.rmempty = true;
/*
additional settings tab
o.placeholder = '/tmp/banIP-report';
o.rmempty = true;
+ o = s.taboption('advanced', form.Flag, 'ban_deduplicate', _('Deduplicate IPs'), _('Deduplicate IP addresses across all active Sets and and tidy up the local blocklist.'));
+ o.default = 1
+ o.rmempty = false;
+
o = s.taboption('advanced', form.Flag, 'ban_reportelements', _('Report Elements'), _('List Set elements in the status and report, disable this to reduce the CPU load.'));
o.default = 1
o.optional = true;
- o = s.taboption('advanced', form.Flag, 'ban_fetchinsecure', _('Download Insecure'), _('Don\'t check SSL server certificates during download.'));
- o.rmempty = true;
-
/*
advanced chain/set settings tab
*/
o.optional = true;
o.rmempty = true;
+ o = s.taboption('adv_log', form.Flag, 'ban_loginput', _('Log WAN-Input'), _('Log suspicious incoming WAN packets (dropped).'));
+ o.default = 1
+ o.rmempty = false;
+
+ o = s.taboption('adv_log', form.Flag, 'ban_logforwardwan', _('Log WAN-Forward'), _('Log suspicious forwarded WAN packets (dropped).'));
+ o.default = 1
+ o.rmempty = false;
+
+ o = s.taboption('adv_log', form.Flag, 'ban_logforwardlan', _('Log LAN-Forward'), _('Log suspicious forwarded LAN packets (rejected).'));
+ o.rmempty = false;
+
o = s.taboption('adv_log', form.ListValue, 'ban_loglimit', _('Log Limit'), _('Parse only the last stated number of log entries for suspicious events. To disable the log monitor at all set it to \'0\'.'));
o.value('0', _('0 (disable)'));
o.value('50', _('50'));
o.rmempty = true;
/*
- blocklist feeds tab
+ feeds tab
*/
o = s.taboption('feeds', form.DummyValue, '_sub');
o.rawhtml = true;
- o.default = '<em><b>' + _('List of supported and fully pre-configured banIP feeds.') + '</b></em>';
+ o.default = '<em><b>' + _('External blocklist feeds') + '</b></em>';
if (feeds) {
- o = s.taboption('feeds', form.MultiValue, 'ban_feed', _('Feed Selection'));
+ o = s.taboption('feeds', form.MultiValue, 'ban_feed', _('Blocklist Feed Selection'));
for (let i = 0; i < Object.keys(feeds).length; i++) {
feed = Object.keys(feeds)[i].trim();
descr = feeds[feed].descr.trim() || '-';
o.optional = true;
o.rmempty = true;
+ o = s.taboption('feeds', form.DummyValue, '_feeds');
+ o.rawhtml = true;
+ o.default = '<hr style="width: 200px; height: 1px;" /><em><b>' + _('External allowlist feeds') + '</b></em>';
+
+ o = s.taboption('feeds', form.DynamicList, 'ban_allowurl', _('Allowlist Feed Selection'));
+ o.optional = true;
+ o.rmempty = true;
+ o.validate = function (section_id, value) {
+ if (!value) {
+ return true;
+ }
+ if (!value.match(/^(http:\/\/|https:\/\/)[A-Za-z0-9\/\.\-_\?\&\+=:~#]+$/)) {
+ return _('Protocol/URL format not supported');
+ }
+ return true;
+ }
+
+ o = s.taboption('feeds', form.DummyValue, '_feeds');
+ o.rawhtml = true;
+ o.default = '<hr style="width: 200px; height: 1px;" /><em><b>' + _('Local feed settings') + '</b></em>';
+
o = s.taboption('feeds', form.Flag, 'ban_autoallowlist', _('Auto Allowlist'), _('Automatically add resolved domains and uplink IPs to the local banIP allowlist.'));
o.default = 1
o.rmempty = false;
msgid "-- Set Selection --"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
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:412
msgid "-200 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr ""
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr ""
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr ""
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr ""
msgid "Download Parameters"
msgstr "تنزيل المعلمات"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
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:528
msgid "E-Mail Notification"
msgstr "إعلام البريد الإلكتروني"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr "ملف تعريف البريد الإلكتروني"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr "عنوان مستقبل البريد الإلكتروني"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr "عنوان مرسل البريد الإلكتروني"
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr "موضوع البريد الإلكتروني"
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr "آخر تشغيل"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr ""
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr "نظرة عامة"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr "دليل التقارير"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr "إعادة تشغيل"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr ""
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr "إعدادات"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr ""
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
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:412
msgid "-200 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr "ASNs"
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr ""
msgid "Auto Detection"
msgstr "Автоматично засичане"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr "Държави"
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr "Не проверявай SSL сертификати по време на сваляне."
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr "Сваляй несигурно"
msgid "Download Parameters"
msgstr "Параметри за теглене"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
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:528
msgid "E-Mail Notification"
msgstr "E-Mail Известяване"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr "E-Mail Профил"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr "E-Mail Изпращач"
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr "E-Mail Тема"
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr ""
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr ""
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr ""
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
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:412
msgid "-200 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr ""
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr ""
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr ""
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr ""
msgid "Download Parameters"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
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:528
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr ""
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr ""
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr ""
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr ""
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr "সেটিংস"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr ""
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
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:412
msgid "-200 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr ""
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
msgstr "Directori de còpies de seguretat"
-#: 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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr ""
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr ""
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr ""
msgid "Download Parameters"
msgstr "Paràmetres de descàrrega"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
msgstr "Utilitat de baixades"
-#: 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:528
msgid "E-Mail Notification"
msgstr "Notificació de correu"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr "Adreça del destinatari de correu"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr ""
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr ""
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr "Darrera execució"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr ""
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr "Visió de conjunt"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr "Torna a carregar"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr "Reiniciar"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr ""
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr "Paràmetres"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr ""
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
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:412
msgid "-200 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr ""
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
msgstr "Záložní adresář"
-#: 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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr ""
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr ""
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr ""
msgid "Download Parameters"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
msgstr "Nástroj pro stahování"
-#: 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:528
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr ""
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr ""
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr "Poslední spuštění"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr ""
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr "Přehled"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr "Znovu načíst"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr ""
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr "Nastavení"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr ""
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr "banIP"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
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:412
msgid "-200 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr "0"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr "ASN'er"
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr ""
msgid "Auto Detection"
msgstr "Automatisk detektering"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
msgstr "Backup Mappe"
-#: 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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr "Lande"
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr "Kontroller ikke SSL-servercertifikater under download."
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr "Download usikker"
msgid "Download Parameters"
msgstr "Download parametre"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
msgstr "Download hjælpeprogram"
-#: 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:528
msgid "E-Mail Notification"
msgstr "Meddelelse pr. e-mail"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr "E-mail profil"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr "Modtagerens e-mailadresse"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr "E-mail afsenderadresse"
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr "E-mail emne"
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr "Giv adgang til LuCI-app banIP"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr "Høj prioritet"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr "Højeste prioritet"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr "IPv6-understøttelse"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr "Sidste kørsel"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr "Mindste prioritet"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr "Mindre prioritet"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgstr ""
"Liste over tilgængelige netværks interfaces til at trigger banIP start."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr "Loggrænse"
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr "Log Vilkår"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr "Netværks Interfaces"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr "Normal prioritet (standard)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr "Oversigt"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "Profil, der anvendes af \"msmtp\" til banIP-meddelelses-e-mails."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr "Rapportmappe"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr "Genstart"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr "Afsenderadresse for banIP-meddelelses-e-mails."
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr "Indstillinger"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr "Tidsstempel"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr "Emne for banIP-meddelelses-e-mails."
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr "banIP"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr "-- Auswahl einstellen --"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
msgstr "-100"
-#: 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:412
msgid "-200 (default)"
msgstr "-200 (Standard)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr "-300"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr "-400"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr "0"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr "100 (Standard)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr "1000"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr "1024 (Standard)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr "2048"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr "250"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr "4096"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr "50"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr "500"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr "512"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr "Autonome Systemnummern"
msgid "Advanced Settings"
msgstr "Erweiterte Einstellungen"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr "Nur Zulassungsliste"
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr "Automatische Zulassungsliste"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr "Automatische Sperrliste"
msgid "Auto Detection"
msgstr "Automatische Erkennung"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
msgstr "Backupverzeichnis"
-#: 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:376
msgid "Base Directory"
msgstr "Basisverzeichnis"
-#: 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:376
msgid "Base working directory while banIP processing."
msgstr "Basisarbeitsverzeichnis während der BanIP-Verarbeitung."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr "Ablauf der Sperrliste"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
-msgstr "Sperrlisten-Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
+msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
msgid ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr "CPU-Kerne"
msgid "Chain/Set Settings"
msgstr "Ketten-/Set-Einstellungen"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr "Länder"
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr "IPs deduplizieren"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"Automatische Erkennung relevanter Netzwerkgeräte, Schnittstellen, Subnetze, "
"Protokolle und Dienstprogramme."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr "Während des Downloads keine SSL-Serverzertifikate überprüfen."
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr "Unsicher herunterladen"
msgid "Download Parameters"
msgstr "Download Parameter"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
msgstr "Download-Werkzeug"
-#: 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:528
msgid "E-Mail Notification"
msgstr "E-Mail-Benachrichtigung"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr "E-Mail-Profil"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr "E-Mail Empfängeradresse"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr "E-Mail Absenderadresse"
msgid "E-Mail Settings"
msgstr "E-Mail-Einstellungen"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr "E-Mail-Thema"
msgid "Enables IPv6 support."
msgstr "Aktiviert die IPv6-Unterstützung."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr "Verfallszeit für automatisch hinzugefügte Mitglieder der Sperrliste."
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr "Feed-Auswahl"
msgid "Grant access to LuCI app banIP"
msgstr "Zugriff auf LuCI-App banIP gewähren"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr "Hohe Priorität"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr "Höchste Priorität"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr "IPv6 Unterstützung"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr "LAN-Forward (Pakete)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr "LAN-Forward-Kette"
msgid "Last Run"
msgstr "Letzter Durchgang"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr "Niedrigste Priorität"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr "Niedrige Priorität"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "Beschränken bestimmter Feeds auf die LAN-Forward-Kette."
-#: 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:442
msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "Beschränken bestimmter Feeds auf die WAN-Forward-Kette."
-#: 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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr "Beschränken bestimmter Feeds auf die WAN-Eingang-Kette."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "Begrenzen von banIP verwendeter Rechenkerne, um RAM zu sparen."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
"Liste der verfügbaren Netzwerkschnittstellen, die den Start von banIP "
"auslösen können."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr "Auflistung der Elemente eines bestimmten banIP-bezogenen Sets."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr "Anzahl der Protokolle"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr "LAN-Weiterleitung protokollieren"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr "Protokollebene"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr "Protokollbegrenzung"
msgid "Log Settings"
msgstr "Protokolleinstellungen"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr "Protokollbedingungen"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr "WAN-Weiterleitung protokollieren"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr "WAN-Eingang protokollieren"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "Verdächtige weitergeleitete LAN-Pakete protokollieren (abgelehnt)."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "Verdächtige weitergeleitete WAN-Pakete protokollieren (verworfen)."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "Verdächtige eingehende WAN-Pakete protokollieren (verworfen)."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr "Max. geöffnete Dateien"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
msgstr "NFT-Informationen"
-#: 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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr "Netzwerkschnittstellen"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr "Nice-Level"
msgid "No banIP related processing logs yet!"
msgstr "Noch keine banIP-bezogenen Verarbeitungsprotokolle!"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr "Normale Priorität (Voreinstellung)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr "Übersicht"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr "Verarbeitungsprotokoll"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "Von 'msmtp' verwendetes Profil für banIP-Benachrichtigungs-E-Mails."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr "Neu laden"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr "Report-Verzeichnis"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr "Berichtselemente"
msgid "Restart"
msgstr "Neustart"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
"Beschränken des Internetzugangs von/zu einer kleinen Anzahl von sicheren IPs."
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "Wählen Sie die logische(n) WAN-IPv6-Netzwerkschnittstelle(n) aus."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr "Absenderadresse für banIP-Benachrichtigungs-E-Mails."
msgid "Set Reporting"
msgstr "Set-Berichte"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
#, fuzzy
msgid "Set Split Size"
msgstr "Teilungsgröße festlegen"
msgid "Set details"
msgstr "Details zum Set"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
"Legen Sie die Priorität der nft-Kette in der banIP-Tabelle fest. Bitte "
"beachten Sie: niedrigere Werte bedeuten höhere 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:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr "Legen Sie den Syslog-Level für die NFT-Protokollierung fest."
msgid "Settings"
msgstr "Einstellungen"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
"Aufteilen des Ladens externer Sets nach jeweils n Mitgliedern, um RAM zu "
msgid "Stop"
msgstr "Stopp"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr "Systeminformationen"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr "Zielverzeichnis für banIP-bezogene Berichtsdateien."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr "Zielverzeichnis für komprimierte Feed-Sicherungen."
msgstr ""
"Die Sperrliste ist zu groß, Änderungen können nicht gespeichert werden."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
"Die standardmäßigen Protokollbegriffe/regulären Ausdrücke filtern "
"verdächtigen SSH-, LuCI-, Nginx- und Asterisk-Verkehr."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
"Die gewählte Priorität wird für die BanIP-Hintergrundverarbeitung verwendet."
msgid "Timestamp"
msgstr "Zeitstempel"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr "Betreff für banIP-Benachrichtigungs-E-Mails."
msgid "WAN-Forward (packets)"
msgstr "WAN-Forward (Pakete)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr "WAN-Forward-Kette"
msgid "WAN-Input (packets)"
msgstr "WAN-Input (Pakete)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr "WAN-Input-Kette"
"it!)."
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:481
msgid "alert"
msgstr "Alarm"
msgid "banIP"
msgstr "banIP"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr "crit"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr "debug"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr "emerg"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr "err"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
msgstr "info"
-#: 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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr "Speicher (Standard)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr "notice"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr "Leistung"
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr "warn (Standard)"
+#~ msgid "Blocklist Feeds"
+#~ msgstr "Sperrlisten-Feeds"
+
#~ msgid "Active Subnets"
#~ msgstr "Aktive Subnetze"
msgid "-- Set Selection --"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
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:412
msgid "-200 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr ""
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr ""
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr ""
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr ""
msgid "Download Parameters"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
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:528
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr ""
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr ""
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr ""
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr ""
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr "Ρυθμίσεις"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr ""
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
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:412
msgid "-200 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr ""
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr ""
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr ""
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr ""
msgid "Download Parameters"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
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:528
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr ""
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr ""
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr ""
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr ""
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr ""
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
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:412
msgid "-200 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr "1024 (predeterminado)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr "ASNs"
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr "Solo lista de permitidos"
"Las modificaciones de la lista de permitidos se han guardado, inicie la "
"búsqueda de dominios o reinicie banIP para que los cambios surtan efecto."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
#, fuzzy
msgid "Auto Allowlist"
msgstr "Lista de permitidos automática"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
#, fuzzy
msgid "Auto Blocklist"
msgstr "Lista de bloqueo automática"
msgid "Auto Detection"
msgstr "Detección automática"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
msgstr "Directorio de respaldo"
-#: 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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr "Países"
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr "No verificar los certificados SSL del servidor durante la descarga."
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr "Descarga insegura"
msgid "Download Parameters"
msgstr "Descargar parámetros"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
msgstr "Utilidad de descarga"
-#: 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:528
msgid "E-Mail Notification"
msgstr "Notificación por correo electrónico"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr "Perfil de correo electrónico"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr "Dirección del destinatario de correo electrónico"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr "Dirección del remitente de correo electrónico"
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr "Tema del correo electrónico"
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr "Otorgar acceso a la aplicación banIP de LuCI"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr "Alta prioridad"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr "Prioridad más alta"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr "Soporte IPv6"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr "Último inicio"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr "Prioridad mínima"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr "Menos prioridad"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgstr ""
"Lista de interfaces de red disponibles para activar el inicio de banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr "Límite de registro"
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr "Términos de registro"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr "Interfaces de red"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr "Prioridad normal (predeterminado)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr "Visión general"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
"Perfil utilizado por 'msmtp' para correos electrónicos de notificación de "
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr "Recargar"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr "Informar directorio"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr "Reiniciar"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr ""
"Dirección del remitente para correos electrónicos de notificación de banIP."
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr "Configuraciones"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr "Marca de tiempo"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr "Tema para correos electrónicos de notificación de banIP."
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr "banIP"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
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:412
msgid "-200 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr "ASN:t"
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr ""
msgid "Auto Detection"
msgstr "Automaattinen tunnistus"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
msgstr "Varmuuskopiohakemisto"
-#: 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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr "Maat"
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr "Älä tarkista SSL-palvelinvarmenteita latauksen aikana."
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr ""
msgid "Download Parameters"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
msgstr "Lataustyökalu"
-#: 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:528
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr ""
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr ""
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr "IPv6-tuki"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr "Viimeksi ajettu"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr ""
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr "Verkkoliitynnät"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr "Yleiskatsaus"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr "Käynnistä uudelleen"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr ""
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr "Asetukset"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr ""
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
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:412
msgid "-200 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr "Les ASN"
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr ""
msgid "Auto Detection"
msgstr "Détection automatique"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
msgstr "Répertoire de sauvegarde"
-#: 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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr "Pays"
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr ""
"Ne pas vérifier les certificats SSL du serveur pendant le téléchargement."
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr "Téléchargement non sécurisé"
msgid "Download Parameters"
msgstr "Paramètres de téléchargement"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
msgstr "Télécharger l'utilitaire"
-#: 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:528
msgid "E-Mail Notification"
msgstr "Notification par courriel"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr "Courriel du profil"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr "Adresse courriel du destinataire"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr "Adresse courriel de l'expéditeur"
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr "Objet du courriel"
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr "Accorder l'accès à l'application LuCI banIP"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr "Priorité élevée"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr "Priorité la plus élevée"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr "Prise en charge d’IPv6"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr "Dernière exécution"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr "Priorité minimale"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr "Moins prioritaire"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
"Liste des interfaces réseau disponibles pour déclencher le démarrage du "
"banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr "Limite de journalisation"
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr "Conditions de journalisation"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr "Interfaces réseau"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr "Priorité normale (par défaut)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr "Aperçu"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
"Profil utilisé par 'msmtp' pour les courriel de notification de bannissement "
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr "Recharger"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr "Répertoire des rapports"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr "Redémarrer"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr ""
"Adresse de l'expéditeur des courriels de notification de bannissement IP."
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr "Paramètres"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr "Horodatage"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr "Rubrique pour les courriels de notification banIP."
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr "bannissement IP"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
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:412
msgid "-200 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr ""
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr ""
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr ""
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr ""
msgid "Download Parameters"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
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:528
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr ""
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr ""
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr ""
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr ""
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr ""
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
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:412
msgid "-200 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr ""
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr ""
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr ""
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr ""
msgid "Download Parameters"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
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:528
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr ""
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr ""
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr ""
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr ""
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr ""
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
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:412
msgid "-200 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr "AS számok"
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr ""
msgid "Auto Detection"
msgstr "Automatikus észlelés"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
msgstr "Biztonsági mentés könyvtára"
-#: 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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr "Országok"
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr ""
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr ""
msgid "Download Parameters"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
msgstr "Letöltési segédprogram"
-#: 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:528
msgid "E-Mail Notification"
msgstr "E-mail értesítés"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr "E-Mail profil"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr "E-Mail küldő cím"
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
#, fuzzy
msgid "E-Mail Topic"
msgstr "E-Mail téma"
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr "IPv6 támogatás"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr "Utolsó futás"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr "Legkisebb prioritás"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr "Kisebb prioritás"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr ""
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr "Hálózati csatolók"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr "Közepes prioritás (alapértelmezett)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr "Áttekintés"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr "Újratöltés"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr "Újraindítás"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr ""
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr "Beállítások"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr ""
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr "banIP"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr "-- Imposta selezione --"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
msgstr "-100"
-#: 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:412
msgid "-200 (default)"
msgstr "-200 (standard)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr "-300"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr "0"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr ""
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
msgstr "Directory del Backup"
-#: 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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr ""
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr "Non controllare i certificati del server SSL durante il download."
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr "Download non sicuro"
msgid "Download Parameters"
msgstr "Parametri di download"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
msgstr "Utilità di download"
-#: 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:528
msgid "E-Mail Notification"
msgstr "Notifica e-mail"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr "Profilo e-mail"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr "Indirizzo e-mail destinatario"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr "Indirizzo e-mail mittente"
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr "Oggetto e-mail"
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr ""
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr "Riepilogo"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr "Aggiorna"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr "Directory dei report"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr "Riavvia"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr ""
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr "Impostazioni"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr ""
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
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:412
msgid "-200 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr ""
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr ""
msgid "Auto Detection"
msgstr "自動検出"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr "国"
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr ""
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr ""
msgid "Download Parameters"
msgstr "ダウンロードのパラメータ"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
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:528
msgid "E-Mail Notification"
msgstr "Eメール通知"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr "Eメールプロファイル"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr "Eメール受信アドレス"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr "Eメール送信者アドレス"
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr "Eメールトピック"
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr "高い優先度"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr "最高の優先度"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr "IPv6 サポート"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr "最終実行"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr "最低の優先度"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr "低い優先度"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr "ログ制限"
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr "ネットワークインターフェース"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr "通常の優先度 (デフォルト)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr "概要"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr "リロード"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr "レポート ディレクトリ"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr "再起動"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr ""
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr "設定"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr "タイムスタンプ"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr ""
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
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:412
msgid "-200 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr ""
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
#, fuzzy
msgid "Backup Directory"
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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr ""
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr ""
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr ""
msgid "Download Parameters"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
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:528
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr ""
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr ""
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr ""
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr "개요"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr ""
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr ""
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
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:412
msgid "-200 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr ""
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr ""
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr ""
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr ""
msgid "Download Parameters"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
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:528
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr ""
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr ""
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr ""
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr "आढावा"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr "रीलोड करा"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr ""
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr ""
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
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:412
msgid "-200 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr ""
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
msgstr "Direktori Sandaran"
-#: 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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr ""
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr ""
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr ""
msgid "Download Parameters"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
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:528
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr ""
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr ""
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr ""
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr ""
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr ""
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
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:412
msgid "-200 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr ""
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
msgstr "Sikkerhetskopimappe"
-#: 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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr ""
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr ""
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr ""
msgid "Download Parameters"
msgstr "Nedlastingsparametre"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
msgstr "Nedlastingsverktøy"
-#: 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:528
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr "E-postprofil"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr "E-postsenderadresse"
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr "E-postemne"
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr "IPv6-støtte"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr "Sist kjørt"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr ""
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr "Oversikt"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr "Rapportmappe"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr "Omstart"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr ""
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr "Innstillinger"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr ""
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr "-- Selectie instellen --"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
msgstr "-100"
-#: 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:412
msgid "-200 (default)"
msgstr "-200 (standaard)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr "-300"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr "-400"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr "0"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr "0 (uitschakelen)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr "100 (standaard)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr "1000"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr "1024 (standaard)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr "2048"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr "250"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr "4096"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr "50"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr "500"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr "512"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr "ASN's"
msgid "Advanced Settings"
msgstr "Geavanceerde instellingen"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr "Alleen toelatingslijst"
"Wijzigingen op de toelatingslijst zijn opgeslagen, start de Domain Lookup of "
"herstart banIP om de wijzigingen door te voeren."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr "Uplink automatisch toestaan"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr "Automatische toelatingslijst"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr "Automatische blokkeerlijst"
msgid "Auto Detection"
msgstr "Autodetectie"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
"Voeg automatisch opgeloste domeinen en verdachte IP's toe aan de lokale "
"banIP-blokkeerlijst."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
"Voeg automatisch opgeloste domeinen en uplink-IP's toe aan de lokale banIP-"
"toelatingslijst."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
msgstr "Backup Directory"
-#: 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:376
msgid "Base Directory"
msgstr "Basismap"
-#: 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:376
msgid "Base working directory while banIP processing."
msgstr "Basiswerkmap tijdens banIP-verwerking."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr "Blokkeerlijst verloopt"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
-msgstr "Blokkeerlijst-feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
+msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
msgid ""
"Bloklijstwijzigingen zijn opgeslagen, start de Domain Lookup of herstart "
"banIP om de wijzigingen door te voeren."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
"Standaard is elke feed actief in alle ondersteunde reeks. Beperk het "
"standaard blokkeerbeleid tot een bepaalde reeks."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr "CPU-kernen"
msgid "Chain/Set Settings"
msgstr "Reeks-/set-instellingen"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
"Wijzigingen op dit tabblad hebben een herstart van de banIP-service nodig om "
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-"Configuratie van het banIP pakket om inkomende en uitgaande ip adressen/"
-"subnetten te bannen via Sets in nftables. Voor meer informatie <a href="
-"\"https://github.com/openwrt/packages/blob/master/net/banip/files/README.md\""
-" target=\"_blank\" rel=\"noreferrer noopener\" >bekijk de online "
-"documentatie</a>"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr "Landen"
msgid "Custom Feed Editor"
msgstr "Aangepaste feededitor"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
"Ontdubbel IP-adressen over alle actieve sets en ruim de lokale blokkeerlijst "
"op."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr "IP's ontdubbelen"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr "Standaard blokkeringsbeleid"
"Detecteer automatisch relevante netwerkapparaten, interfaces, subnetten, "
"protocollen en hulpprogramma's."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr "Uitschakelen"
msgid "Domain Lookup"
msgstr "Domein opzoeken"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr "Tijdens download niet de SSL server certificaten controleren."
msgid "Download Custom Feeds"
msgstr "Aangepaste feeds downloaden"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr "Onbeveiligd downloaden"
msgid "Download Parameters"
msgstr "Parameters downloaden"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
msgstr "Download hulpprogramma"
-#: 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:528
msgid "E-Mail Notification"
msgstr "E-Mail notificatie"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr "E-Mail profiel"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr "E-Mail adres van ontvanger"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr "E-Mail adres van verzender"
msgid "E-Mail Settings"
msgstr "Email instellingen"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr "E-Mail onderwerp"
msgid "Enables IPv6 support."
msgstr "Schakelt IPv6-ondersteuning in."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr "Vervaltijd voor automatisch toegevoegde leden van de blokkeerlijstset."
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr "Feednaam"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr "Feed selectie"
msgid "Grant access to LuCI app banIP"
msgstr "Geef toegang tot LuCI app banIP"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr "Hoge prioriteit"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr "Hoogste prioriteit"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr "IP"
msgid "IPv6 Support"
msgstr "IPv6 ondersteuning"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr "LAN-Forward (pakketten)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr "LAN-Forward Reeks"
msgid "Last Run"
msgstr "Laatst gedraaid"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr "Laagste prioriteit"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr "Lage prioriteit"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "Beperk bepaalde feeds tot de LAN-Forward-reeks."
-#: 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:442
msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "Beperk bepaalde feeds tot de WAN-Forward-reeks."
-#: 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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr "Beperk bepaalde feeds tot de WAN-invoer reeks."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "Beperk de cpu-cores die banIP gebruikt om RAM te besparen."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr "Beperk de uplink autoallow-functie."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr "Lijst van beschikbare netwerkinterfaces die banIP starten."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr "Lijst met ondersteunde en volledig vooraf geconfigureerde banIP-feeds."
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
"Maak een lijst van de elementen van een specifieke banIP-gerelateerde Set."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr "Aantal logboeken"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr "Logboek LAN-Forward"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr "Logboek niveau"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr "Log limiet"
msgid "Log Settings"
msgstr "Logboek instellingen"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr "Logboek termen (sleutelwoorden)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr "Logboek WAN-Forward"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr "Logboek WAN-invoer"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "Logboek van verdachte doorgestuurde LAN-pakketten (geweigerd)."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "Logboek verdachte doorgestuurde WAN-pakketten (vervallen)."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "Logboek verdachte inkomende WAN-pakketten (vervallen)."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr "Max Open Bestanden"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr "NFT-ketenprioriteit"
msgid "NFT Information"
msgstr "NFT Informatie"
-#: 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:403
msgid "NFT Set Policy"
msgstr "NFT-beleid instellen"
msgid "Network Interfaces"
msgstr "Netwerk interfaces"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr "Mooi niveau"
msgid "No banIP related processing logs yet!"
msgstr "Nog geen banIP-gerelateerde verwerkingslogboeken!"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr "Normale prioriteit (standaard)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr "Overzicht"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr "Logboek verwerken"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
"Profiel gebruikt voor 'msmtp' voor banIP E-Mail berichten/notificaties."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
msgstr "Protocol/URL-formaat wordt niet ondersteund"
-#: 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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr "Ontvang e-mailmeldingen bij elke banIP-run."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr "Herladen"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr "Rapportage directory"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr "Rapporteer elementen"
msgid "Restart"
msgstr "Herstart"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "Beperk de internettoegang van/tot een klein aantal beveiligde IP's."
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "Selecteer de logische WAN IPv6-netwerkinterface(s)."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr "Afzender e-mailadres voor de banIP email meldingen."
msgid "Set Reporting"
msgstr "Rapportage instellen"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr "Splitsgrootte instellen"
msgid "Set details"
msgstr "Details instellen"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
"Stel de prioriteit van de nft reeks in binnen de banIP-tabel. Let op: lagere "
"waarden betekenen hogere 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:403
msgid "Set the nft policy for banIP-related Sets."
msgstr "Stel het nft-beleid in voor banIP-gerelateerde sets."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr "Stel het syslog-niveau in voor NFT-logboekregistratie."
msgid "Settings"
msgstr "Instellingen"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr "Splits het laden van externe sets na elke n leden om RAM te besparen."
msgid "Stop"
msgstr "Stop"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr "Subnet (standaard)"
msgid "System Information"
msgstr "Systeem informatie"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr "Doelmap voor banIP-gerelateerde rapportbestanden."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr "Doelmap voor back-ups van gecomprimeerde feeds."
msgid "The blocklist is too big, unable to save modifications."
msgstr "De blokkeerlijst is te groot, kan wijzigingen niet opslaan."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
"De standaard logtermen / reguliere expressies filteren verdacht ssh-, LuCI-, "
"nginx- en asterisk-verkeer."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
"De geselecteerde prioriteit wordt gebruikt voor banIP-achtergrondverwerking."
msgid "Timestamp"
msgstr "Tijdstempel"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
"Om e-mailmeldingen in te schakelen, stelt u het 'msmtp'-pakket in en geeft u "
"een geldig e-mailontvangeradres op."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr "Onderwerp voor banIP notificatie e-mails."
msgid "WAN-Forward (packets)"
msgstr "WAN-Forward (pakketten)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr "WAN-Forward Reeks"
msgid "WAN-Input (packets)"
msgstr "WAN-invoer (pakketten)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr "WAN-invoer reeks"
"versie van de beheerder leegt u het aangepaste feedbestand opnieuw (niet "
"verwijderen!)."
-#: 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:481
msgid "alert"
msgstr "alarm"
msgid "banIP"
msgstr "banIP"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr "crit"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr "debuggen"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr "tevoorschijn komen"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr "fout"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
msgstr "info"
-#: 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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr "lokale toelatingslijst"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr "lokale blokkeerlijst"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr "geheugen (standaard)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr "kennisgeving"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr "prestatie"
msgid "start (default)"
msgstr "start (standaard)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr "waarschuwen (standaard)"
+#~ msgid "Blocklist Feeds"
+#~ msgstr "Blokkeerlijst-feeds"
+
+#~ msgid ""
+#~ "Configuration of the banIP package to ban incoming and outgoing ip "
+#~ "addresses/subnets via Sets in nftables. For further information <a "
+#~ "href=\"https://github.com/openwrt/packages/blob/master/net/banip/files/"
+#~ "README.md\" target=\"_blank\" rel=\"noreferrer noopener\" >check the "
+#~ "online documentation</a>"
+#~ msgstr ""
+#~ "Configuratie van het banIP pakket om inkomende en uitgaande ip adressen/"
+#~ "subnetten te bannen via Sets in nftables. Voor meer informatie <a "
+#~ "href=\"https://github.com/openwrt/packages/blob/master/net/banip/files/"
+#~ "README.md\" target=\"_blank\" rel=\"noreferrer noopener\" >bekijk de "
+#~ "online documentatie</a>"
+
+#~ msgid "List of supported and fully pre-configured banIP feeds."
+#~ msgstr ""
+#~ "Lijst met ondersteunde en volledig vooraf geconfigureerde banIP-feeds."
+
#~ msgid "Active Subnets"
#~ msgstr "Actieve subnetten"
msgid "-- Set Selection --"
msgstr "-- Wybór zestawu --"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
msgstr "-100"
-#: 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:412
msgid "-200 (default)"
msgstr "-200 (domyślne)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr "-300"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr "-400"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr "0"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr "0 (wyłączone)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr "100 (domyślne)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr "1000"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr "1024 (domyślne)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr "2048"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr "250"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr "4096"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr "50"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr "500"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr "512"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr "ASN-y"
msgid "Advanced Settings"
msgstr "Ustawienia zaawansowane"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr "Tylko lista dozwolonych"
"Modyfikacje listy dozwolonych zostały zapisane, rozpocznij wyszukiwanie "
"domen lub zrestartuj banIP, aby zmiany zaczęły obowiązywać."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr "Automatycznie zezwalaj na łącze nadrzędne"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr "Automatyczna lista dozwolonych"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr "Automatyczna lista zablokowanych"
msgid "Auto Detection"
msgstr "Automatyczne wykrywanie"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
"Automatycznie dodawaj rozpoznane domeny i podejrzane adresy IP do lokalnej "
"listy zablokowanych banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
"Automatycznie dodawaj rozpoznane domeny i adresy IP łącza nadrzędnego do "
"lokalnej listy dozwolonych banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
msgstr "Katalog kopii zapasowej"
-#: 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:376
msgid "Base Directory"
msgstr "Główny katalog"
-#: 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:376
msgid "Base working directory while banIP processing."
msgstr "Główny katalog roboczy podczas przetwarzania banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr "Wygaśnięcie listy zablokowanych"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
-msgstr "Źródła listy zablokowanych"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
+msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
msgid ""
"Modyfikacje listy zablokowanych zostały zapisane, rozpocznij wyszukiwanie "
"domen lub zrestartuj banIP, aby zmiany zaczęły obowiązywać."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
"Domyślnie każde źródło jest aktywne we wszystkich obsługiwanych łańcuchach. "
"Ogranicz domyślne zasady blokowania do określonego łańcucha."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr "Rdzenie procesora"
msgid "Chain/Set Settings"
msgstr "Ustawienia łańcucha/zestawu"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
"Zmiany na tej karcie wymagają ponownego uruchomienia usługi banIP, aby "
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-"Konfiguracja pakietu banIP do blokowania przychodzących i wychodzących "
-"adresów IP/podsieci za pośrednictwem zestawów w nftables. Aby uzyskać więcej "
-"informacji, <a href=\"https://github.com/openwrt/packages/blob/master/net/"
-"banip/files/README.md\" target=\"_blank\" rel=\"noreferrer noopener\" "
-">sprawdź dokumentację online</a>"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr "Kraje"
msgid "Custom Feed Editor"
msgstr "Edytor źródeł niestandardowych"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
"Deduplikuj adresy IP we wszystkich aktywnych zestawach i uporządkuj lokalną "
"listę zablokowanych."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr "Deduplikacja adresów IP"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr "Domyślne zasady blokowania"
"Automatycznie wykrywaj odpowiednie urządzenia sieciowe, interfejsy, "
"podsieci, protokoły i narzędzia."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr "Wyłącz"
msgid "Domain Lookup"
msgstr "Wyszukiwanie domen"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr "Nie sprawdzaj certyfikatów SSL serwera podczas pobierania."
msgid "Download Custom Feeds"
msgstr "Pobierz źródła niestandardowe"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr "Niezabezpieczone pobieranie"
msgid "Download Parameters"
msgstr "Parametry pobierania"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
msgstr "Narzędzie pobierania"
-#: 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:528
msgid "E-Mail Notification"
msgstr "Powiadomienie e-mail"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr "Profil e-mail"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr "Adres e-mail odbiorcy"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr "Adres e-mail nadawcy"
msgid "E-Mail Settings"
msgstr "Ustawienia e-mail"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr "Temat e-mail"
msgid "Enables IPv6 support."
msgstr "Włącza obsługę IPv6."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
"Czas wygaśnięcia automatycznie dodanych członków zestawu listy zablokowanych."
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr "Nazwa źródła"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr "Wybór źródeł"
msgid "Grant access to LuCI app banIP"
msgstr "Udziel dostępu LuCI do aplikacji banIP"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr "Wysoki priorytet"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr "Najwyższy priorytet"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr "IP"
msgid "IPv6 Support"
msgstr "Obsługa IPv6"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr "Przekazywanie LAN (pakiety)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr "Łańcuch przekazywania LAN"
msgid "Last Run"
msgstr "Ostatnie uruchomienie"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr "Najniższy priorytet"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr "Mniejszy priorytet"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "Ogranicz niektóre źródła do łańcucha przekazywania LAN."
-#: 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:442
msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "Ogranicz niektóre źródła do łańcucha przekazywania WAN."
-#: 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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr "Ogranicz niektóre źródła do łańcucha wejścia WAN."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
"Ogranicz liczbę rdzeni procesora używanych przez banIP, aby oszczędzać "
"pamięć RAM."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr "Ogranicz funkcję automatycznego zezwalania na łącze nadrzędne."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgstr ""
"Lista dostępnych interfejsów sieciowych wyzwalających uruchomienie banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr "Lista obsługiwanych i w pełni wstępnie skonfigurowanych źródeł banIP."
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr "Wymień elementy określonego zestawu związanego z banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr "Liczba dziennika"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr "Rejestrowanie przekazywania LAN"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr "Poziom logowania"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr "Limit dziennika"
msgid "Log Settings"
msgstr "Ustawienia dziennika"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr "Warunki dziennika"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr "Rejestrowanie przekazywania WAN"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr "Rejestrowanie wejścia WAN"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "Rejestruj podejrzane przekazane pakiety LAN (odrzucone)."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "Rejestruj podejrzane przekazane pakiety WAN (porzucone)."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "Rejestruj podejrzane przychodzące pakiety WAN (porzucone)."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr "Maksymalna liczba otwartych plików"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr "Priorytet łańcucha NFT"
msgid "NFT Information"
msgstr "Informacje NFT"
-#: 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:403
msgid "NFT Set Policy"
msgstr "Zasady zestawu NFT"
msgid "Network Interfaces"
msgstr "Interfejsy sieciowe"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr "Poziom nice"
msgid "No banIP related processing logs yet!"
msgstr "Nie ma jeszcze dzienników przetwarzania związanych z banIP!"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr "Normalny priorytet (domyślny)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr "Przegląd"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr "Dziennik przetwarzania"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
"Profil używany przez \"msmtp\" dla wiadomości e-mail z powiadomieniem banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
msgstr "Format protokołu/adresu URL jest nieobsługiwany"
-#: 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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr "Otrzymuj powiadomienia e-mail przy każdym uruchomieniu banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr "Przeładuj"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr "Katalog raportu"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr "Elementy raportu"
msgid "Restart"
msgstr "Restartuj"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
"Ogranicz dostęp do Internetu z/do niewielkiej liczby bezpiecznych adresów IP."
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "Wybierz logiczne interfejsy sieciowe IPv6 WAN."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr "Adres nadawcy wiadomości e-mail z powiadomieniem banIP."
msgid "Set Reporting"
msgstr "Raportowanie zestawu"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr "Rozmiar podziału zestawu"
msgid "Set details"
msgstr "Szczegóły zestawu"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
"Ustaw priorytet łańcucha nft w tabeli banIP. Uwaga: niższe wartości "
"oznaczają wyższy 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:403
msgid "Set the nft policy for banIP-related Sets."
msgstr "Ustaw zasady nft dla zestawów związanych z banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr "Ustaw poziom dziennika syslog dla rejestrowania NFT."
msgid "Settings"
msgstr "Ustawienia"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
"Podziel ładowanie zestawu zewnętrznego po każdych n członkach, aby "
msgid "Stop"
msgstr "Zatrzymaj"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr "Podsieć (domyślne)"
msgid "System Information"
msgstr "Informacje systemowe"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr "Katalog docelowy dla plików raportów związanych z banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr "Katalog docelowy dla kopii zapasowych skompresowanych źródeł."
msgid "The blocklist is too big, unable to save modifications."
msgstr "Lista zablokowanych jest za duża, nie można zapisać zmian."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
"Domyślne terminy/wyrażenia regularne dziennika filtrują podejrzany ruch ssh, "
"LuCI, nginx i asterisk."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr "Wybrany priorytet będzie używany do przetwarzania banIP w tle."
msgid "Timestamp"
msgstr "Sygnatura czasowa"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
"Aby włączyć powiadomienia e-mail, skonfiguruj pakiet 'msmtp' i podaj "
"prawidłowy adres e-mail odbiorcy."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr "Temat dla wiadomości e-mail z powiadomieniem banIP."
msgid "WAN-Forward (packets)"
msgstr "Przekazywanie WAN (pakiety)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr "Łańcuch przekazywania WAN"
msgid "WAN-Input (packets)"
msgstr "Wejście WAN (pakiety)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr "Łańcuch wejścia WAN"
"zapasową. Aby wrócić do wersji opiekunów, po prostu ponownie opróżnij plik "
"źródeł niestandardowych (nie usuwaj go!)."
-#: 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:481
msgid "alert"
msgstr "alarm"
msgid "banIP"
msgstr "banIP"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr "krytyczny"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr "debugowanie"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr "ratunkowy"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr "błąd"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
msgstr "informacyjny"
-#: 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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr "lokalna lista dozwolonych"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr "lokalna lista zablokowanych"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr "pamięć (domyślne)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr "spostrzeżenie"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr "wydajność"
msgid "start (default)"
msgstr "uruchom (domyślne)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr "ostrzeżenie (domyślne)"
+#~ msgid "Blocklist Feeds"
+#~ msgstr "Źródła listy zablokowanych"
+
+#~ msgid ""
+#~ "Configuration of the banIP package to ban incoming and outgoing ip "
+#~ "addresses/subnets via Sets in nftables. For further information <a "
+#~ "href=\"https://github.com/openwrt/packages/blob/master/net/banip/files/"
+#~ "README.md\" target=\"_blank\" rel=\"noreferrer noopener\" >check the "
+#~ "online documentation</a>"
+#~ msgstr ""
+#~ "Konfiguracja pakietu banIP do blokowania przychodzących i wychodzących "
+#~ "adresów IP/podsieci za pośrednictwem zestawów w nftables. Aby uzyskać "
+#~ "więcej informacji, <a href=\"https://github.com/openwrt/packages/blob/"
+#~ "master/net/banip/files/README.md\" target=\"_blank\" rel=\"noreferrer "
+#~ "noopener\" >sprawdź dokumentację online</a>"
+
+#~ msgid "List of supported and fully pre-configured banIP feeds."
+#~ msgstr ""
+#~ "Lista obsługiwanych i w pełni wstępnie skonfigurowanych źródeł banIP."
+
#~ msgid "Active Subnets"
#~ msgstr "Aktywne podsieci"
msgid "-- Set Selection --"
msgstr "-- Definir seleção --"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
msgstr "-100"
-#: 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:412
msgid "-200 (default)"
msgstr "-200 (padrão)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr "-300"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr "-400"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr "0"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr "100 (padrão)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr "1000"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr "1024 (padrão)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr "2048"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr "250"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr "4096"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr "50"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr "500"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr "512"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr "ASNs"
msgid "Advanced Settings"
msgstr "Configurações avançadas"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr "Apenas a lista dos permitidos"
"As alterações da lista de permissões foram salvas, inicie a pesquisa de "
"domínio ou reinicie o banIP para que as alterações entrem em vigor."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr "Lista automática dos permitidos"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr "Lista automática de bloqueio"
msgid "Auto Detection"
msgstr "Deteção automática"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
msgstr "Diretório do Backup"
-#: 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:376
msgid "Base Directory"
msgstr "Diretório base"
-#: 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:376
msgid "Base working directory while banIP processing."
msgstr ""
"Diretório principal de trabalho usado durante o processamento do banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr "Validade da lista de bloqueio"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
-msgstr "Feeds da lista de bloqueio"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
+msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
msgid ""
"As alterações da lista de bloqueio foram salvas, inicie a pesquisa de "
"domínio ou reinicie o banIP para que as alterações entrem em vigor."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr "Núcleos da CPU"
msgid "Chain/Set Settings"
msgstr "Cadeia/Definir as configurações"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
"As alterações nesta guia precisam de uma reinicialização do serviço banIP "
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr "Países"
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr "Eliminar IPs duplicados"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"Detecte os aparelhos relevantes de rede, as interfaces, as sub-redes, os "
"protocolos e os utilitários automaticamente."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr "Busca por domínio"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr "Não verificar os certificados de SSL do servidor durante a descarrega."
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr "Descarregar inseguro"
msgid "Download Parameters"
msgstr "Parâmetros de Descarregamento"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
msgstr "Ferramenta para Descarregar"
-#: 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:528
msgid "E-Mail Notification"
msgstr "Notificação por e-mail"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr "Perfil de e-mail"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr "Endereço de e-mail do destinatário"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr "Endereço de e-mail do remetente"
msgid "E-Mail Settings"
msgstr "Configurações do e-mail"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr "Assunto do e-mail"
msgid "Enables IPv6 support."
msgstr "Ativa o suporte IPv6."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
"Tempo de expiração para os membros do conjunto de lista de bloqueio que "
"foram adicionados automaticamente."
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr "Seleção do feed"
msgid "Grant access to LuCI app banIP"
msgstr "Conceda acesso à app LuCI banIP"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr "Alta prioridade"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr "Máxima Prioridade"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr "Suporte de IPv6"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr "LAN-Forward (pacotes)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr "Cadeia LAN-Forward"
msgid "Last Run"
msgstr "Última Execução"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr "Mínima Prioridade"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr "Menor Prioridade"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "Limite certos feeds à cadeia LAN-Forward."
-#: 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:442
msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "Limite certos feeds à cadeia WAN-Forward."
-#: 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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr "Limite certos feeds à cadeia WAN-Input."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
"Limite a quantidade dos núcleos da CPU usados pelo banIP para economizar RAM."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgstr ""
"Lista de interfaces de rede disponíveis para acionar o início do banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr "Lista de feeds banIP totalmente compatíveis e pré-configurados."
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr "Liste os elementos de um conjunto específico relacionado ao banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr "Contagem dos registos"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr "Registo LAN-Forward"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr "Nível do registo"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr "Limite do Registo"
msgid "Log Settings"
msgstr "Configurações do registo"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr "Termos do registo"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr "Registo WAN-Forward"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr "Registo WAN-Input"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "Registar os pacotes suspeitos encaminhados da LAN (rejeitados)."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "Registar os pacotes suspeitos encaminhados da WAN (rejeitados)."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "Registar os pacotes suspeitos da entrada da WAN (rejeitados)."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr "Quantidade máxima de ficheiros abertos"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
msgstr "Informação NFT"
-#: 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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr "Interfaces de Rede"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr "Nível de Nice"
msgid "No banIP related processing logs yet!"
msgstr "Ainda não há registos do processamento relacionados ao banIP!"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr "Prioridade Normal (padrão)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr "Visão Geral"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr "Registo de processamento"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "O perfil usado pelo 'msmtp' para os e-mails de notificação do banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr "Receba notificações por e-mail a cada execução do banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr "Recarregar"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr "Diretório de Relatórios"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr "Elementos do relatório"
msgid "Restart"
msgstr "Reiniciar"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
"Restrinja o acesso à Internet de/para uma pequena quantidade de IPs seguros."
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "Selecione a(s) interface(s) lógica(s) da rede WAN IPv6."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr "Endereço do remetente para os e-mails de notificação do banIP."
msgid "Set Reporting"
msgstr "Definir o relatório"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr "Definir o tamanho da divisão"
msgid "Set details"
msgstr "Definir os detalhes"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
"Defina a prioridade da cadeia NFT na tabela do banIP. Observação: valores "
"mais baixos significam prioridade mais alta."
-#: 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:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr "Define o nível do syslog para os registos NFT."
msgid "Settings"
msgstr "Configurações"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
"Divida o carregamento do conjunto externo após cada n membros para "
msgid "Stop"
msgstr "Parar"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr "Informação do sistema"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
"Diretório de destino para os ficheiros do relatório relacionados ao banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr "Diretório de destino para os backups comprimidos do feed."
msgstr ""
"A lista de bloqueio é grande demais, não é possível salvar as alterações."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
"Os termos/expressões regulares padrão do registo estão filtrando o tráfego "
"suspeito do ssh, LuCI, nginx e do asterisk."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
"A prioridade selecionada será usada pelo banIP para o processamento em "
msgid "Timestamp"
msgstr "Marca de Tempo"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
"Para ativar as notificações por e-mail, configure o pacote 'msmtp' e "
"especifique um endereço de e-mail com um destinatário válido."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr "Tópico para e-mails de notificação do banIP."
msgid "WAN-Forward (packets)"
msgstr "WAN-Forward (pacotes)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr "Cadeia WAN-Forward"
msgid "WAN-Input (packets)"
msgstr "WAN-Input (pacotes)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr "Cadeia WAN-Input"
"it!)."
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:481
msgid "alert"
msgstr "alerta"
msgid "banIP"
msgstr "banIP"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr "crítico"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr "detalhado"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr "urgente"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr "erro"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
msgstr "info"
-#: 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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr "lista dos permitidos local"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr "lista de bloqueio local"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr "memória (padrão)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr "aviso"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr "desempenho"
msgid "start (default)"
msgstr "iniciar (padrão)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr "alertar (padrão)"
+#~ msgid "Blocklist Feeds"
+#~ msgstr "Feeds da lista de bloqueio"
+
+#~ msgid "List of supported and fully pre-configured banIP feeds."
+#~ msgstr "Lista de feeds banIP totalmente compatíveis e pré-configurados."
+
#~ msgid "Active Subnets"
#~ msgstr "Sub-redes ativas"
msgid "-- Set Selection --"
msgstr "-- Definir seleção --"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
msgstr "-100"
-#: 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:412
msgid "-200 (default)"
msgstr "-200 (padrão)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr "-300"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr "-400"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr "0"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr "0 (desativar)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr "100 (padrão)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr "1000"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr "1024 (padrão)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr "2048"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr "250"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr "4096"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr "50"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr "500"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr "512"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr "ASNs"
msgid "Advanced Settings"
msgstr "Configurações avançadas"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr "Apenas a lista dos permitidos"
"As alterações da lista de permissões foram salvas, inicie a pesquisa de "
"domínio ou reinicie o banIP para que as alterações entrem em vigor."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr "Permite o enlace automático"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr "Lista automática dos permitidos"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr "Lista automática de bloqueio"
msgid "Auto Detection"
msgstr "Detecção Automática"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
"Adicione automaticamente os domínios resolvidos e os IPs suspeitos à lista "
"de bloqueio local do banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
"Adicione automaticamente os domínios resolvidos e os IPs do enlace à lista "
"de permissões locais do banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
msgstr "Diretório da cópia de segurança"
-#: 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:376
msgid "Base Directory"
msgstr "Diretório base"
-#: 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:376
msgid "Base working directory while banIP processing."
msgstr ""
"Diretório principal de trabalho usado durante o processamento do banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr "Validade da lista de bloqueio"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
-msgstr "Feeds da lista de bloqueio"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
+msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
msgid ""
"As alterações da lista de bloqueio foram salvas, inicie a pesquisa de "
"domínio ou reinicie o banIP para que as alterações entrem em vigor."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
"Por padrão, cada feed está ativo em todas as cadeias suportadas. Limite a "
"política de bloqueio padrão a uma determinada cadeia."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr "Núcleos da CPU"
msgid "Chain/Set Settings"
msgstr "Cadeia/Definir as configurações"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
"As alterações nesta guia precisam de uma reinicialização do serviço banIP "
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-"Configuração do pacote banIP para banir os endereços IP/sub-redes da entrada "
-"e da saída através de conjuntos com nftables. Para mais informações <a href="
-"\"https://github.com/openwrt/packages/blob/master/net/banip/files/README.md\""
-" target=\"_blank\" rel=\"noreferrer noopener\" > consulte a documentação "
-"online </a>"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr "Países"
msgid "Custom Feed Editor"
msgstr "Editor do feed personalizado"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
"Remover a duplicidade dos endereços IP em todos os conjuntos ativos e "
"organizar a lista local de bloqueio."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr "Eliminar IPs duplicados"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr "Política de bloqueio padrão"
"Detecte os dispositivos relevantes de rede, as interfaces, as sub-redes, os "
"protocolos e os utilitários automaticamente."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr "Desativar"
msgid "Domain Lookup"
msgstr "Busca por domínio"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr "Não verifique os certificados do servidor SSL durante o download."
msgid "Download Custom Feeds"
msgstr "Baixar feeds personalizados"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr "Download inseguro"
msgid "Download Parameters"
msgstr "Parâmetros de Download"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
msgstr "Ferramenta para Baixar"
-#: 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:528
msgid "E-Mail Notification"
msgstr "Notificação por E-Mail"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr "E-Mail do Perfil"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr "Endereço de E-Mail do Destinatário"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr "Endereço de E-Mail do Remetente"
msgid "E-Mail Settings"
msgstr "Configurações do e-mail"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr "Assunto do E-Mail"
msgid "Enables IPv6 support."
msgstr "Ativa o suporte IPv6."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
"Tempo de expiração para os membros do conjunto de lista de bloqueio que "
"foram adicionados automaticamente."
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr "Nome do feed"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr "Seleção do feed"
msgid "Grant access to LuCI app banIP"
msgstr "Conceda acesso ao aplicativo LuCI banIP"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr "Alta prioridade"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr "Máxima Prioridade"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr "IP"
msgid "IPv6 Support"
msgstr "Suporte ao IPv6"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr "LAN-Forward (pacotes)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr "Cadeia LAN-Forward"
msgid "Last Run"
msgstr "Última Execução"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr "Mínima Prioridade"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr "Menor Prioridade"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "Limite certos feeds à cadeia LAN-Forward."
-#: 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:442
msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "Limite certos feeds à cadeia WAN-Forward."
-#: 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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr "Limite certos feeds à cadeia WAN-Input."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
"Limite a quantidade dos núcleos da CPU usados pelo banIP para economizar RAM."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr "Limite a função de permissão automática do enlace."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgstr ""
"Lista de interfaces de rede disponíveis para acionar o início do banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr "Lista de feeds banIP totalmente compatíveis e pré-configurados."
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr "Liste os elementos de um conjunto específico relacionado ao banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr "Contagem dos registros"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr "Registro LAN-Forward"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr "Nível do registro"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr "Limite do Registro"
msgid "Log Settings"
msgstr "Configurações do registro"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr "Termos do registro"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr "Registro WAN-Forward"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr "Registro WAN-Input"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "Registre os pacotes suspeitos encaminhados da LAN (rejeitados)."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "Registre os pacotes suspeitos encaminhados da WAN (rejeitados)."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "Registre os pacotes suspeitos da entrada da WAN (rejeitados)."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr "Quantidade máxima de arquivos abertos"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr "Prioridade da cadeia NFT"
msgid "NFT Information"
msgstr "Informação NFT"
-#: 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:403
msgid "NFT Set Policy"
msgstr "Política do conjunto NFT"
msgid "Network Interfaces"
msgstr "Interfaces de Rede"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr "Nível bom"
msgid "No banIP related processing logs yet!"
msgstr "Ainda não há registros do processamento relacionados ao banIP!"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr "Prioridade Normal (padrão)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr "Visão geral"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr "Registro de processamento"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "O perfil usado pelo 'msmtp' para os e-mails de notificação do banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
msgstr "Formato de protocolo/URL não suportado"
-#: 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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr "Receba notificações por e-mail a cada execução do banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr "Recarregar"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr "Diretório do Relatório"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr "Elementos do relatório"
msgid "Restart"
msgstr "Reiniciar"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
"Restrinja o acesso à Internet de/para uma pequena quantidade de IPs seguros."
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "Selecione a(s) interface(s) lógica(s) da rede WAN IPv6."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr "Endereço do remetente para os e-mails de notificação do banIP."
msgid "Set Reporting"
msgstr "Definir o relatório"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr "Definir o tamanho da divisão"
msgid "Set details"
msgstr "Definir os detalhes"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
"Defina a prioridade da cadeia NFT na tabela do banIP. Observação: valores "
"mais baixos significam prioridade mais alta."
-#: 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:403
msgid "Set the nft policy for banIP-related Sets."
msgstr "Defina a política NFT para os conjuntos relacionados ao banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr "Define o nível do syslog para os registros NFT."
msgid "Settings"
msgstr "Configurações"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
"Divida o carregamento do conjunto externo após cada n membros para "
msgid "Stop"
msgstr "Parar"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr "Sub-rede (padrão)"
msgid "System Information"
msgstr "Informação do sistema"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
"Diretório de destino para os arquivos do relatório relacionados ao banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr "Diretório de destino para os backups comprimidos do feed."
msgstr ""
"A lista de bloqueio é grande demais, não é possível salvar as alterações."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
"Os termos/expressões regulares padrão do registro estão filtrando o tráfego "
"suspeito do ssh, LuCI, nginx e do asterisk."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
"A prioridade selecionada será usada pelo banIP para o processamento em "
msgid "Timestamp"
msgstr "Marca de Tempo"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
"Para ativar as notificações por e-mail, configure o pacote 'msmtp' e "
"especifique um endereço de e-mail com um destinatário válido."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr "Tópico para e-mails de notificação do banIP."
msgid "WAN-Forward (packets)"
msgstr "WAN-Forward (pacotes)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr "Cadeia WAN-Forward"
msgid "WAN-Input (packets)"
msgstr "WAN-Input (pacotes)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr "Cadeia WAN-Input"
"um backup local. Para voltar para a versão do mantenedor, apenas deixe o "
"arquivo de feed personalizado vazio (mas não o exclua!)."
-#: 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:481
msgid "alert"
msgstr "alerta"
msgid "banIP"
msgstr "Banir IP"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr "crítico"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr "detalhado"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr "urgente"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr "erro"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
msgstr "info"
-#: 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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr "lista dos permitidos local"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr "lista de bloqueio local"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr "memória (padrão)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr "aviso"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr "desempenho"
msgid "start (default)"
msgstr "iniciar (padrão)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr "alertar (padrão)"
+#~ msgid "Blocklist Feeds"
+#~ msgstr "Feeds da lista de bloqueio"
+
+#~ msgid ""
+#~ "Configuration of the banIP package to ban incoming and outgoing ip "
+#~ "addresses/subnets via Sets in nftables. For further information <a "
+#~ "href=\"https://github.com/openwrt/packages/blob/master/net/banip/files/"
+#~ "README.md\" target=\"_blank\" rel=\"noreferrer noopener\" >check the "
+#~ "online documentation</a>"
+#~ msgstr ""
+#~ "Configuração do pacote banIP para banir os endereços IP/sub-redes da "
+#~ "entrada e da saída através de conjuntos com nftables. Para mais "
+#~ "informações <a href=\"https://github.com/openwrt/packages/blob/master/net/"
+#~ "banip/files/README.md\" target=\"_blank\" rel=\"noreferrer noopener\" > "
+#~ "consulte a documentação online </a>"
+
+#~ msgid "List of supported and fully pre-configured banIP feeds."
+#~ msgstr "Lista de feeds banIP totalmente compatíveis e pré-configurados."
+
#~ msgid "Active Subnets"
#~ msgstr "Sub-redes Ativas"
msgid "-- Set Selection --"
msgstr "-- Selecția setului --"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
msgstr "-100"
-#: 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:412
msgid "-200 (default)"
msgstr "-200 (implicit)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr "-300"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr "-400"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr "0"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr "100 (implicit)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr "1000"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr "1024 (implicit)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr "2048"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr "250"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr "4096"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr "50"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr "500"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr "512"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr "ASN-uri"
msgid "Advanced Settings"
msgstr "Setări avansate"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr "Doar Allowlist"
"Lista cu modificările permise au fost salvate, porniți căutarea domeniului "
"sau reporniți banIP pentru ca modificările să intre în vigoare."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr "Allowlist Automată"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr "Lista de blocare automată"
msgid "Auto Detection"
msgstr "Detecție automată"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
msgstr "Director copie de siguranţă"
-#: 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:376
msgid "Base Directory"
msgstr "Director de bază"
-#: 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:376
msgid "Base working directory while banIP processing."
msgstr "Directorul de lucru de bază în timpul procesării banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr "Expirarea listei de blocuri"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
-msgstr "Fluxuri de lista de blocuri"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
+msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
msgid ""
"Modificările cu lista de blocare au fost salvate, porniți căutarea "
"domeniului sau reporniți banIP-ul, iar modificările intră în vigoare."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr "Nuclee CPU"
msgid "Chain/Set Settings"
msgstr "Chain/Set de setări"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
"Modificările din această filă necesită o repornire a serviciului banIP "
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr "Țări"
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr "Deduplicați IP-uri"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"Detectarea automată a dispozitivelor de rețea, interfețelor, subrețelelor, "
"protocoalelor și utilităților relevante."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr "Căutare domeniu"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr "Nu verificați certificatele serverului SSL în timpul descărcării."
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr "Descărcați Insecure"
msgid "Download Parameters"
msgstr "Parametrii de descărcare"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
msgstr "Utilitar descărcare"
-#: 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:528
msgid "E-Mail Notification"
msgstr "Notificare prin e-mail"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr "Profil de e-mail"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr "Adresa de e-mail a destinatarului"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr "Adresa expeditorului de e-mail"
msgid "E-Mail Settings"
msgstr "Setări e-mail"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr "Subiect E-Mail"
msgid "Enables IPv6 support."
msgstr "Activează suportul IPv6."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
"Timpul de expirare pentru membrii setului de liste de blocare adăugate "
"automat."
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr "Selecția Feed"
msgid "Grant access to LuCI app banIP"
msgstr "Acordarea accesului la aplicația LuCI banIP"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr "Prioritate ridicată"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr "Cea mai mare prioritate"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr "Suport IPv6"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr "LAN-Forward (pachete)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr "Chain LAN-Forward"
msgid "Last Run"
msgstr "Ultima rulare"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr "Cea mai mică prioritate"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr "Prioritate mai mică"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "Limitați anumite fluxuri la lanțul LAN-Forward."
-#: 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:442
msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "Limitați anumite fluxuri la lanțul WAN-Forward."
-#: 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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr "Limitarea anumitor fluxuri în lanțul WAN-Input."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "Limitați nucleele CPU utilizate de banIP pentru a economisi RAM."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgstr ""
"Lista interfețelor de rețea disponibile pentru a declanșa pornirea banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr "Lista de fluxuri banIP acceptate și complet preconfigurate."
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr "Enumeră elementele unui anumit set legat de banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr "Număr de jurnale"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr "Jurnalul LAN-Forward"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr "Nivel Jurnal"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr "Limita de jurnal"
msgid "Log Settings"
msgstr "Setări jurnal"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr "Termeni de jurnal"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr "Jurnal WAN-Forward"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr "Jurnal WAN-Input"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "Înregistrați pachetele LAN suspecte transmise (respinse)."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "Jurnalul pachetelor WAN suspicioase transmise (abandonate)."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "Înregistrare a pachetelor WAN suspecte de intrare (abandonate)."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr "Maxim de fișiere deschise"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
msgstr "Informații NFT"
-#: 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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr "Interfețe de rețea"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr "Nivel Bun"
msgid "No banIP related processing logs yet!"
msgstr "Nu există încă jurnale de procesare legate de banIP!"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr "Prioritate normală (implicită)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr "Prezentare generală"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr "Jurnal de procesare"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
"Profilul utilizat de 'msmtp' pentru mesajele electronice de notificare banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr "Primiți notificări prin e-mail la fiecare banIP rulat."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr "Reîncărcați"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr "Director de rapoarte"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr "Elemente de raport"
msgid "Restart"
msgstr "Reporniți"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
"Restricționați accesul la internet de la/către un număr mic de IP-uri "
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "Selectați interfața (e) logică de rețea WAN IPv6."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr "Adresa expeditorului pentru e-mailurile de notificare banIP."
msgid "Set Reporting"
msgstr "Set raportare"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr "Setați Dimensiunea Divizată"
msgid "Set details"
msgstr "Setați detaliile"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
"Setează prioritatea lanțului nft în cadrul tabelului banIP. Vă rugăm să "
"rețineți: valorile mai mici înseamnă o prioritate mai mare."
-#: 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:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr "Setați nivelul syslog pentru jurnalizarea NFT."
msgid "Settings"
msgstr "Setări"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
"Împărțiți încărcarea setului extern după fiecare n membri pentru a economisi "
msgid "Stop"
msgstr "Stop"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr "Informații de sistem"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr "Directorul țintă pentru fișierele de raportare referitoare la banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr "Directorul țintă pentru copiile de rezervă ale fluxurilor comprimate."
msgid "The blocklist is too big, unable to save modifications."
msgstr "Lista de blocuri este prea mare, nu se pot salva modificările."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
"Termenii de jurnal / expresiile regulate implicite filtrează traficul ssh, "
"LuCI, nginx și asterisk suspect."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
"Prioritatea selectată va fi utilizată pentru procesarea în fundal a banIP."
msgid "Timestamp"
msgstr "Înregistrarea timpului"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
"Pentru a activa notificările prin e-mail, configurați pachetul \"msmtp\" și "
"specificați o adresă de destinatar de e-mail validă."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr "Subiect pentru e-mailurile de notificare banIP."
msgid "WAN-Forward (packets)"
msgstr "WAN-Forward (pachete)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr "Chain WAN-Forward"
msgid "WAN-Input (packets)"
msgstr "WAN-Input (pachete)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr "Chain WAN-Input"
"it!)."
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:481
msgid "alert"
msgstr "alertă"
msgid "banIP"
msgstr "banIP"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr "critic"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr "depanare"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr "urgență"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr "eroare"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
msgstr "informații"
-#: 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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr "lista locală de permise"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr "lista de blocare locală"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr "memorie (implicit)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr "notificare"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr "performanță"
msgid "start (default)"
msgstr "start (implicit)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr "avertisment (implicit)"
+#~ msgid "Blocklist Feeds"
+#~ msgstr "Fluxuri de lista de blocuri"
+
+#~ msgid "List of supported and fully pre-configured banIP feeds."
+#~ msgstr "Lista de fluxuri banIP acceptate și complet preconfigurate."
+
#~ msgid "Active Subnets"
#~ msgstr "Subrețele active"
msgid "-- Set Selection --"
msgstr "-- Выберите набор --"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
msgstr "−100"
-#: 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:412
msgid "-200 (default)"
msgstr "−200 (по умолчанию)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr "−300"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr "−400"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr "0"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr "0 (отключить)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr "100 (по умолчанию)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr "1000"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr "1024 (по умолчанию)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr "2048"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr "250"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr "4096"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr "50"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr "500"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr "512"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr "Автономные системы"
msgid "Advanced Settings"
msgstr "Расширенные настройки"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr "Только список разрешений"
"Изменения в списке Allowlist были сохранены, запустите программу Domain "
"Lookup или перезапустите banIP, чтобы изменения вступили в силу."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr "Автоматически разрешать исходящие соединения"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr "Автоматический список разрешений"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr "Автоматический блок-лист"
msgid "Auto Detection"
msgstr "Автоопределение"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
"Автоматическое добавление разрешенных доменов и подозрительных IP-адресов в "
"локальный блок-лист banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
"Автоматическое добавление разрешенных доменов и IP-адресов исходящих "
"соединений в локальный список разрешений banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr "Базовый рабочий каталог при обработке banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr "Истечение срока действия блок-листа"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
-msgstr "Каналы блок-листа"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
+msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
msgid ""
"Изменения в блок-листе были сохранены, запустите программу Domain Lookup или "
"перезапустите banIP, чтобы изменения вступили в силу."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
"По умолчанию каждый канал активен во всех поддерживаемых цепочках. "
"Ограничьте политику блоков по умолчанию определенной цепочкой."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr "Ядра ЦП"
msgid "Chain/Set Settings"
msgstr "Настройки цепи/набора"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
"Для вступления в силу изменений на этой вкладке требуется перезапуск службы "
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-"Настройка пакета banIP для запрета входящих и исходящих ip-адресов/подсетей "
-"через наборы в nftables. Для получения дополнительной информации <a href="
-"\"https://github.com/openwrt/packages/blob/master/net/banip/files/README.md\""
-" target=\"_blank\" rel=\"noreferrer noopener\" >ознакомьтесь с "
-"онлайн-документацией</a>"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr "Страны"
msgid "Custom Feed Editor"
msgstr "Пользовательский редактор каналов"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
"Дублирование IP-адресов во всех активных наборах и приведение в порядок "
"локального списка блокировки."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr "Дублирование IP-адресов"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr "Политика блокировки по умолчанию"
"Автоматическое обнаружение соответствующих сетевых устройств, интерфейсов, "
"подсетей, протоколов и утилит."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr "Отключить"
msgid "Domain Lookup"
msgstr "Поиск домена"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr "Не проверять SSL сертификаты сервера во время загрузки."
msgid "Download Custom Feeds"
msgstr "Скачать пользовательские каналы"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr "Небезопасная загрузка"
msgid "Download Parameters"
msgstr "Параметры загрузки"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
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:528
msgid "E-Mail Notification"
msgstr "Уведомление по электронной почте"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr "Профиль электронной почты"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr "Адрес получателя"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr "Адрес отправителя"
msgid "E-Mail Settings"
msgstr "Настройки электронной почты"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr "Тема"
msgid "Enables IPv6 support."
msgstr "Включает поддержку IPv6."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
"Время истечения срока действия для автоматически добавляемых членов набора "
"списков блокировки."
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr "Название канала"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr "Выбор канала"
msgid "Grant access to LuCI app banIP"
msgstr "Предоставить доступ LuCI к приложению banIP"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr "Высокий приоритет"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr "Наивысший приоритет"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr "IP"
msgid "IPv6 Support"
msgstr "Поддержка IPv6"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr "LAN-Forward (пакеты)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr "Цепочка LAN-Forward"
msgid "Last Run"
msgstr "Последний запуск"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr "Наименьший приоритет"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr "Меньший приоритет"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "Ограничить определенные каналы в цепи LAN-Forward."
-#: 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:442
msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "Ограничьте определенные каналы в цепи WAN-Forward."
-#: 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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr "Ограничить определенные каналы в цепи WAN-вход."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
"Ограничьте количество ядер процессора, используемых banIP для экономии "
"оперативной памяти."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr "Ограничить функцию автоматического разрешения исходящего канала."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr "Список доступных сетевых интерфейсов запускающих banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-"Список поддерживаемых и полностью предварительно настроенных каналов banIP."
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr "Перечислите элементы конкретного набора, связанного с запретом."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr "Счетчик журналов"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr "Журнал LAN-Forward"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr "Уровень ведения журнала"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr "Ограничение журнала"
msgid "Log Settings"
msgstr "Настройки журнала"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr "Условия ведения журнала"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr "Журнал WAN-Forward"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr "Журнал WAN-Input"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
"Ведите журнал подозрительных перенаправленных пакетов LAN (отклоненных)."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "Журнал подозрительных перенаправленных пакетов WAN (сброшенных)."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "Ведите журнал подозрительных входящих пакетов WAN (сброшенных)."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr "Максимальное количество открытых файлов"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr "Приоритет цепочки NFT"
msgid "NFT Information"
msgstr "Информация NFT"
-#: 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:403
msgid "NFT Set Policy"
msgstr "Политика набора NFT"
msgid "Network Interfaces"
msgstr "Сетевые интерфейсы"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr "Уровень nice"
msgid "No banIP related processing logs yet!"
msgstr "Журналов обработки, связанных с banIP, пока нет!"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr "Нормальный приоритет (по умолчанию)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr "Обзор"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr "Обработка журнала"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
"Профиль, используемый 'msmtp' для электронной почты с уведомлением banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
msgstr "Формат протокола/URL не поддерживается"
-#: 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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr "Получайте уведомления по электронной почте при каждом запуске banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr "Перезапустить"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr "Папка для отчётов"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr "Элементы отчета"
msgid "Restart"
msgstr "Перезапустить"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
"Ограничить доступ в Интернет с/на небольшое количество защищенных IP-адресов."
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "Выберите логический сетевой интерфейс (интерфейсы) WAN IPv6."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr "Адрес отправителя для электронных писем с уведомлением banIP."
msgid "Set Reporting"
msgstr "Настройка отчетов"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr "Установить размер разделения"
msgid "Set details"
msgstr "Сведения о наборе"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
"Установите приоритет цепочки nft в таблице banIP. Обратите внимание: меньшие "
"значения означают более высокий приоритет."
-#: 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:403
msgid "Set the nft policy for banIP-related Sets."
msgstr "Установите политику nft для наборов, связанных с banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr "Установите уровень syslog для ведения журнала NFT."
msgid "Settings"
msgstr "Настройки"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
"Разделение загрузки внешнего набора после каждых n членов для экономии "
msgid "Stop"
msgstr "Остановить"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr "Подсеть (по умолчанию)"
msgid "System Information"
msgstr "Системная информация"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr "Целевой каталог для файлов отчетов, связанных с banIP."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr "Целевой каталог для сжатых резервных копий."
msgid "The blocklist is too big, unable to save modifications."
msgstr "Блок-лист слишком большой, не удается сохранить изменения."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
"Термины / регулярные выражения журнала по умолчанию фильтруют подозрительный "
"трафик ssh, LuCI, nginx и asterisk."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr "Выбранный приоритет будет использоваться для фоновой обработки banIP."
msgid "Timestamp"
msgstr "Временная метка"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
"Чтобы включить уведомления по электронной почте, установите пакет 'msmtp' и "
"укажите правильный адрес получателя электронной почты."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr "Тема для электронной почты с уведомлением о banIP."
msgid "WAN-Forward (packets)"
msgstr "WAN-Forward (пакеты)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr "Цепочка WAN-Forward"
msgid "WAN-Input (packets)"
msgstr "WAN-Input (пакеты)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr "Цепочка WAN-Input"
"новые или делать локальную резервную копию. Чтобы вернуться исходной версии, "
"загрузите пустой файл (не удаляйте его!)."
-#: 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:481
msgid "alert"
msgstr "оповещение"
msgid "banIP"
msgstr "banIP"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr "крит"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr "отладка"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr "чрезв"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr "ошибка"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr "локальный список разрешений"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr "локальный черный список"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr "память (по умолчанию)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr "уведомление"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr "производительность"
msgid "start (default)"
msgstr "старт (по умолчанию)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr "предупреждение (по умолчанию)"
+#~ msgid "Blocklist Feeds"
+#~ msgstr "Каналы блок-листа"
+
+#~ msgid ""
+#~ "Configuration of the banIP package to ban incoming and outgoing ip "
+#~ "addresses/subnets via Sets in nftables. For further information <a "
+#~ "href=\"https://github.com/openwrt/packages/blob/master/net/banip/files/"
+#~ "README.md\" target=\"_blank\" rel=\"noreferrer noopener\" >check the "
+#~ "online documentation</a>"
+#~ msgstr ""
+#~ "Настройка пакета banIP для запрета входящих и исходящих ip-адресов/"
+#~ "подсетей через наборы в nftables. Для получения дополнительной информации "
+#~ "<a href=\"https://github.com/openwrt/packages/blob/master/net/banip/files/"
+#~ "README.md\" target=\"_blank\" rel=\"noreferrer noopener\" >ознакомьтесь с "
+#~ "онлайн-документацией</a>"
+
+#~ msgid "List of supported and fully pre-configured banIP feeds."
+#~ msgstr ""
+#~ "Список поддерживаемых и полностью предварительно настроенных каналов "
+#~ "banIP."
+
#~ msgid "Active Subnets"
#~ msgstr "Активные подсети"
msgid "-- Set Selection --"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
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:412
msgid "-200 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr ""
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
msgstr "Záložný priečinok"
-#: 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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr ""
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr ""
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr ""
msgid "Download Parameters"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
msgstr "Nástroj na sťahovanie"
-#: 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:528
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr ""
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr ""
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr ""
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr "Prehľad"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr ""
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr "Nastavenia"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr ""
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
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:412
msgid "-200 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr "ASN:er"
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr ""
msgid "Auto Detection"
msgstr "Automatisk detektering"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
msgstr "Säkerhetskopiera mapp"
-#: 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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr ""
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr ""
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr "Ladda ner osäkert"
msgid "Download Parameters"
msgstr "Ladda ner parametrar"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
msgstr "Ladda ner verktyget"
-#: 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:528
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr "E-postprofil"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr "Avsändaradress för e-post"
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr "E-postämne"
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr "Kördes senast"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr ""
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr "Överblick"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr "Ladda om"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr "Rapportkatalog"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr "Starta om"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr ""
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr "Inställningar"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr ""
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
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:412
msgid "-200 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr ""
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr ""
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr ""
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr ""
msgid "Download Parameters"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
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:528
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr ""
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr ""
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr ""
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr ""
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr ""
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
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:412
msgid "-200 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr ""
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr ""
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr ""
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr ""
msgid "Download Parameters"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
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:528
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr ""
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr ""
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr ""
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr ""
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr ""
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
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:412
msgid "-200 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr "ASN'ler"
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr ""
msgid "Auto Detection"
msgstr "Otomatik Algılama"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
msgstr "Yedekleme Dizini"
-#: 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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr "Ülkeler"
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr "İndirme sırasında SSL sunucu sertifikalarını kontrol etme."
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr "Güvensiz İndir"
msgid "Download Parameters"
msgstr "İndirme Parametreleri"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
msgstr "İndirme Aracı"
-#: 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:528
msgid "E-Mail Notification"
msgstr "E-Posta Bildirimi"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr "E-Posta Profili"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr "E-Posta Alıcı Adresi"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr "E-Posta Gönderen Adresi"
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr "E-Posta Konusu"
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr "LuCI uygulaması banIP'ye erişim izni verin"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr "Yüksek öncelik"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr "En yüksek öncelik"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr "IPv6 Desteği"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr "Son çalışma zamanı"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr "En Az Öncelik"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr "Daha Az Öncelik"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
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."
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr "Günlük Sınırı"
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr "Günlük Şartları"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr "Ağ arayüzleri"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr "Normal Öncelik (varsayılan)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr "Genel bakış"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "BanIP bildirim e-postaları için 'msmtp' tarafından kullanılan profil."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr "Yeniden yükle"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr "Rapor Dizini"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr "Yeniden başlat"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr "BanIP bildirim e-postaları için gönderen adresi."
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr "Ayarlar"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr "Zaman damgası"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr "BanIP bildirim e-postaları için konu."
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr "banIP"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
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:412
msgid "-200 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr ""
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr ""
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr "Не перевіряти SSL-сертифікати сервера під час завантаження."
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr "Завантажувати небезпечним шляхом"
msgid "Download Parameters"
msgstr "Параметри завантаження"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
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:528
msgid "E-Mail Notification"
msgstr "E-Mail повідомлення"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr "E-Mail профіль"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr "E-Mail адреса отримувача"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr "E-Mail адреса відправника"
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr "Тема"
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr "Останній запуск"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr ""
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr "Огляд"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr "Тека для звітів"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr "Перезапустити"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr ""
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr "Налаштування"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr ""
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr "banIP"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
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:412
msgid "-200 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr ""
msgid "Advanced Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr ""
msgid "Auto Detection"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
msgstr "Thư mục sao lưu"
-#: 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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr ""
msgid "Chain/Set Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr ""
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr ""
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr ""
msgid "Download Parameters"
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
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:528
msgid "E-Mail Notification"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr ""
msgid "E-Mail Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr ""
msgid "Enables IPv6 support."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr ""
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr ""
msgid "Last Run"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr ""
msgid "Log Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
msgid "No banIP related processing logs yet!"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
msgid "Overview"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr ""
msgid "Restart"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr ""
msgid "Set Reporting"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr ""
msgid "Set details"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr ""
msgid "Settings"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr ""
msgid "Stop"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
msgid "Timestamp"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr ""
msgid "WAN-Forward (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr ""
"it!)."
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:481
msgid "alert"
msgstr ""
msgid "banIP"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr ""
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr ""
msgid "-- Set Selection --"
msgstr "-- IP 集选择 --"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
msgstr "-100"
-#: 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:412
msgid "-200 (default)"
msgstr "-200 (默认)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr "-300"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr "-400"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr "0"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr "0 (禁用)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr "100 (默认)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr "1000"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr "1024 (默认)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr "2048"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr "250"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr "4096"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr "50"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr "500"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr "512"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr "平均取样数"
msgid "Advanced Settings"
msgstr "高级设置"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr "仅白名单"
"banIP that changes take effect."
msgstr "已保存白名单更改,启动域名查询或要让更改生效请重启 banIP。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr "自动允许上行线路"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr "自动白名单"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr "自动黑名单"
msgid "Auto Detection"
msgstr "自动检测"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr "自动添加已解析域名和可疑 IP 到本地 banIP 黑名单。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr "自动添加已解析域名和上行线路 IP 到本地 banIP 白名单。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr "banIP 处理时的基础工作目录。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr "黑名单过期时间"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
-msgstr "黑名单源"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
+msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
msgid ""
"banIP that changes take effect."
msgstr "已保存黑名单更改,启动域名查询或要让更改生效请重启 banIP。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
"每个订阅源默认在所有受支持的链中处于活跃状态。将默认拦截策略限制到特定的链。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr "CPU 核心"
msgid "Chain/Set Settings"
msgstr "IP 链路/集合设置"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr "此标签页上进行的更改需要重启 banIP 服务才能生效。"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-"配置 banIP 包通过 nfttables 中的 Sets 禁止传入和传出 ip 地址/子网。"
-"进一步信息请 <a href=\"https://github.com/openwrt/packages/blob/master/net/"
-"banip/files/README.md\" target=\"_blank\" rel=\"noreferrer noopener\" "
-">查看在线文档</a>"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr "地区"
msgid "Custom Feed Editor"
msgstr "自定义源的编辑器"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr "去除所有活跃 Sets 中的重复 IP 地址并整理本地黑名单。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr "IP 去重"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr "默认拦截策略"
"utilities automatically."
msgstr "自动检测相关的网络设备、接口、子网、协议和工具。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr "禁用"
msgid "Domain Lookup"
msgstr "域名查询"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr "下载期间不检查 SSL 服务器证书。"
msgid "Download Custom Feeds"
msgstr "下载自定义源"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr "下载不安全"
msgid "Download Parameters"
msgstr "下载参数"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
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:528
msgid "E-Mail Notification"
msgstr "电子邮件通知"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr "电子邮件概要"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr "电子邮件收件人地址"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr "电子邮件发件人地址"
msgid "E-Mail Settings"
msgstr "电子邮件设置"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr "电子邮件主题"
msgid "Enables IPv6 support."
msgstr "启用 IPv6 支持。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr "自动添加的黑名单集成员的过期时间。"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr "源名称"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr "源选择"
msgid "Grant access to LuCI app banIP"
msgstr "授予访问 LuCI 应用 banIP 的权限"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr "较高优先级"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr "最高优先级"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr "IP"
msgid "IPv6 Support"
msgstr "IPv6 支持"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr "局域网转发(数据包)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr "局域网转发链"
msgid "Last Run"
msgstr "最后运行"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr "最低优先级"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr "较低优先级"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr "限制特定源到广域网输入链。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "限制 banIP 使用的 cpu 核心数来节省内存。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr "限制上行线路自动允许功能。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr "触发 banIP 启动的可用网络接口列表。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr "受支持的和完整预配置的 banIP 源列表。"
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr "列出与某一特定 banIP 有关的集的元素。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr "日志数"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr "记录局域网转发"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr "日志级别"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr "日志限制"
msgid "Log Settings"
msgstr "日志设置"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr "日志项"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr "记录广域网转发"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr "记录广域网输入"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "记录可疑的转发局域网数据包(已拒绝)。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "记录可疑的转发的广域网数据包(已丢弃)。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "记录可疑的传入广域网数据包(已丢弃)。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr "打开文件的最大数目"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr "NFT 链优先级"
msgid "NFT Information"
msgstr "NFT 信息"
-#: 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:403
msgid "NFT Set Policy"
msgstr "NFT 集策略"
msgid "Network Interfaces"
msgstr "网络接口"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr "Nice 级别"
msgid "No banIP related processing logs yet!"
msgstr "还没有 banIP 相关的处理日志!"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr "正常优先级(默认)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr "进行拦截前允许同一 IP 的失败登录尝试在日志中出现几次。"
msgid "Overview"
msgstr "概览"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr "处理日志"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "“msmtp”所用的 banIP 电子邮件通知配置。"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
msgstr "不受支持的协议/URL 格式"
-#: 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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr "接收每次 banIP 运行的电子邮件通知。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr "重新载入"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr "报告目录"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr "报告元素"
msgid "Restart"
msgstr "重启"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "限制来自/对少量安全 IP 的互联网访问。"
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "选择逻辑广域网 IPv6 网络接口。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr "banIP 通知邮件的发送地址。"
msgid "Set Reporting"
msgstr "设置报告"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr "设置分割尺寸"
msgid "Set details"
msgstr "集详情"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr "设置 banIP 表内的 nft 链优先级。请注意:值越低,优先级越高。"
-#: 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:403
msgid "Set the nft policy for banIP-related Sets."
msgstr "设置 banIP 相关集合的 nft 策略。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr "设定 NFT 日志记录的 syslog 级别。"
msgid "Settings"
msgstr "设置"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr "每 n 名成员后分割外部集加载来节省内存。"
msgid "Stop"
msgstr "停止"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr "子网(默认)"
msgid "System Information"
msgstr "系统信息"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr "banIP 相关报告文件的目标目录。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr "压缩的源备份文件的目标目录。"
msgid "The blocklist is too big, unable to save modifications."
msgstr "黑名单过大,无法保存更改。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr "默认的日志短语、正则表达式正在过滤可疑的 ssh、LuCI、nginx 和星号流量。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr "所选的优先级将用于 banIP 后台处理。"
msgid "Timestamp"
msgstr "时间戳"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr "要开启电子邮件通知,请设置 'msmtp' 包并指定有效的电子邮件接收者地址。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr "banIP 通知邮件的主题。"
msgid "WAN-Forward (packets)"
msgstr "广域网转发(数据包)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr "广域网转发链"
msgid "WAN-Input (packets)"
msgstr "广域网输入(数据包)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
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:481
msgid "alert"
msgstr "报警"
msgid "banIP"
msgstr "banIP"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr "关键项"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr "调试"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr "紧急项"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr "错误项"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr "本地白名单"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr "本地黑名单"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr "内存(默认)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr "通知"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr "性能"
msgid "start (default)"
msgstr "启动(默认)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr "警告(默认)"
+#~ msgid "Blocklist Feeds"
+#~ msgstr "黑名单源"
+
+#~ msgid ""
+#~ "Configuration of the banIP package to ban incoming and outgoing ip "
+#~ "addresses/subnets via Sets in nftables. For further information <a "
+#~ "href=\"https://github.com/openwrt/packages/blob/master/net/banip/files/"
+#~ "README.md\" target=\"_blank\" rel=\"noreferrer noopener\" >check the "
+#~ "online documentation</a>"
+#~ msgstr ""
+#~ "配置 banIP 包通过 nfttables 中的 Sets 禁止传入和传出 ip 地址/子网。进一步"
+#~ "信息请 <a href=\"https://github.com/openwrt/packages/blob/master/net/"
+#~ "banip/files/README.md\" target=\"_blank\" rel=\"noreferrer noopener\" >查"
+#~ "看在线文档</a>"
+
+#~ msgid "List of supported and fully pre-configured banIP feeds."
+#~ msgstr "受支持的和完整预配置的 banIP 源列表。"
+
#~ msgid "Active Subnets"
#~ msgstr "活动子网"
msgid "-- Set Selection --"
msgstr "-- IP 集合選擇 --"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
msgid "-100"
msgstr "-100"
-#: 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:412
msgid "-200 (default)"
msgstr "-200 (預設)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
msgid "-300"
msgstr "-300"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414
msgid "-400"
msgstr "-400"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "0"
msgstr "0"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
msgid "0 (disable)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
+msgid "1"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+msgid "10"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "100 (default)"
msgstr "100 (預設)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
msgid "1000"
msgstr "1000"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "1024 (default)"
msgstr "1024 (預設)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
+msgid "20"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "2048"
msgstr "2048"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506
msgid "250"
msgstr "250"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
+msgid "3"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354
msgid "4096"
msgstr "4096"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
+msgid "5 (default)"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504
msgid "50"
msgstr "50"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "500"
msgstr "500"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "512"
msgstr "512"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
msgid "ASNs"
msgstr "平均取樣數"
msgid "Advanced Settings"
msgstr "進階設定"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
+msgid "Allowlist Feed Selection"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Allowlist Only"
msgstr "僅白名單"
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Auto Allow Uplink"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Auto Allowlist"
msgstr "自動白名單"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid "Auto Blocklist"
msgstr "自動黑名單"
msgid "Auto Detection"
msgstr "自動偵測"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Backup Directory"
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:376
msgid "Base Directory"
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:376
msgid "Base working directory while banIP processing."
msgstr "banIP 處理時的基礎工作目錄。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Blocklist Expiry"
msgstr "黑名單過期時間"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
-msgid "Blocklist Feeds"
-msgstr "黑名單來源"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
+msgid "Blocklist Feed Selection"
+msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
msgid ""
"banIP that changes take effect."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "CPU Cores"
msgstr "CPU 核心"
msgid "Chain/Set Settings"
msgstr "IP 鏈結/集合設定"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:30
msgid ""
-"Configuration of the banIP package to ban incoming and outgoing ip addresses/"
-"subnets via Sets in nftables. For further information <a href=\"https://"
-"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" "
-"target=\"_blank\" rel=\"noreferrer noopener\" >check the online "
-"documentation</a>"
+"Configuration of the banIP package to ban incoming and outgoing IPs via "
+"named nftables Sets. For further information <a href=\"https://github.com/"
+"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
+"rel=\"noreferrer noopener\" >check the online documentation</a>"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "Countries"
msgstr "地區"
msgid "Custom Feed Editor"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid ""
"Deduplicate IP addresses across all active Sets and and tidy up the local "
"blocklist."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
msgid "Deduplicate IPs"
msgstr "刪除重複 IP"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Default Block Policy"
msgstr ""
"utilities automatically."
msgstr "自動偵測相關的網路裝置、介面、子網路、協定和工具。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:583
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614
msgid "Disable"
msgstr ""
msgid "Domain Lookup"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Don't check SSL server certificates during download."
msgstr "下載期間不檢查 SSL 伺服器證書。"
msgid "Download Custom Feeds"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Download Insecure"
msgstr "下載不安全"
msgid "Download Parameters"
msgstr "下載參數"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid "Download Retries"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Download Utility"
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:528
msgid "E-Mail Notification"
msgstr "電子郵件通知"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "E-Mail Profile"
msgstr "電郵設定檔"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "E-Mail Receiver Address"
msgstr "電郵收件人位址"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "E-Mail Sender Address"
msgstr "電郵寄件人位址"
msgid "E-Mail Settings"
msgstr "電子郵件設定"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "E-Mail Topic"
msgstr "電郵主旨"
msgid "Enables IPv6 support."
msgstr "啟用 IPv6 支援。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
msgid "Expiry time for auto added blocklist set members."
msgstr "自動加入的黑名單集合成員的過期時間。"
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
+msgid "External allowlist feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
+msgid "External blocklist feeds"
+msgstr ""
+
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Feed Selection"
msgstr "來源選擇"
msgid "Grant access to LuCI app banIP"
msgstr "授予存取 LuCI 應用 banIP 的權限"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr "較高優先順序"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr "最高優先順序"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:616
msgid "IP"
msgstr ""
msgid "IPv6 Support"
msgstr "支援 IPv6"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgid "LAN-Forward (packets)"
msgstr "區域網路轉發 (資料封包)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "LAN-Forward Chain"
msgstr "區域網路轉發鏈"
msgid "Last Run"
msgstr "最後執行"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr "最低優先順序"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr "較低優先順序"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "Limit certain feeds to the LAN-Forward chain."
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:442
msgid "Limit certain feeds to the WAN-Forward chain."
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:432
msgid "Limit certain feeds to the WAN-Input chain."
msgstr "限制特定來源到廣域網路輸入鏈。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "限制 banIP 使用的 cpu 核心數來節省記憶體。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:582
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Limit the uplink autoallow function."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgid "List of available network interfaces to trigger the banIP start."
msgstr "觸發 banIP 啟動的可用網路介面列表。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
-msgid "List of supported and fully pre-configured banIP feeds."
-msgstr ""
-
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82
msgid "List the elements of a specific banIP-related Set."
msgstr "列出與某一特定 banIP 有關的集合的元素。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:607
+msgid "Local feed settings"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid "Log Count"
msgstr "日誌數"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log LAN-Forward"
msgstr "記錄區域網路轉發"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Log Level"
msgstr "日誌級別"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid "Log Limit"
msgstr "日誌限制"
msgid "Log Settings"
msgstr "日誌設定"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid "Log Terms"
msgstr "日誌項目"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log WAN-Forward"
msgstr "記錄廣域網路轉發"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log WAN-Input"
msgstr "記錄廣域網路輸入"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "記錄可疑的轉發區域網路資料封包 (已拒絕)。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495
msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "記錄可疑的轉發的廣域網路資料封包 (已捨棄)。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "記錄可疑的傳入廣域網路資料封包 (已捨棄)。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "Max Open Files"
msgstr "開啟檔案的最大數目"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid "NFT Chain Priority"
msgstr ""
msgid "NFT Information"
msgstr "NFT 資訊"
-#: 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:403
msgid "NFT Set Policy"
msgstr ""
msgid "Network Interfaces"
msgstr "網路介面"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr "Nice 級別"
msgid "No banIP related processing logs yet!"
msgstr "還沒有 banIP 相關的處理日誌!"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority (default)"
msgstr "正常優先順序 (預設)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
+msgid ""
+"Number of download attempts in case of an error (not supported by uclient-"
+"fetch)."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr "進行攔截前允許同一 IP 的失敗登錄嘗試在日誌中出現幾次。"
msgid "Overview"
msgstr "概覽"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgid "Processing Log"
msgstr "處理日誌"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "「msmtp」所用的 banIP 電子郵件通知設定。"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Protocol/URL format not supported"
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:528
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgid "Reload"
msgstr "重新載入"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Report Directory"
msgstr "報告目錄"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "Report Elements"
msgstr "報告元素"
msgid "Restart"
msgstr "重新啟動"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:625
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "限制來自/對少量安全 IP 的網際網路存取。"
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "選擇邏輯廣域網路 IPv6 網路介面。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:525
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:535
msgid "Sender address for banIP notification E-Mails."
msgstr "banIP 通知郵件的傳送位址。"
msgid "Set Reporting"
msgstr "設定報告"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Set Split Size"
msgstr "設定分割尺寸"
msgid "Set details"
msgstr "集合詳情"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409
msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority."
msgstr "設定 banIP 表內的 nft 鏈優先順序。請注意:數值越低,優先順序越高。"
-#: 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:403
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "Set the syslog level for NFT logging."
msgstr "設定 NFT 日誌記錄的 syslog 級別。"
msgid "Settings"
msgstr "設置"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:367
msgid "Split external set loading after every n members to save RAM."
msgstr "每 n 名成員後分割外部集合載入來節省記憶體。"
msgid "Stop"
msgstr "停止"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
msgid "Subnet (default)"
msgstr ""
msgid "System Information"
msgstr "系統資訊"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:386
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "Target directory for banIP-related report files."
msgstr "banIP 相關報告檔案的目標目錄。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
msgid "Target directory for compressed feed backups."
msgstr "壓縮的來源備份檔案的目標目錄。"
msgid "The blocklist is too big, unable to save modifications."
msgstr "黑名單過大,無法儲存變更。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517
msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic."
msgstr "預設的日誌字詞、正規表達式正在過濾可疑的 ssh、LuCI、nginx 和星號流量。"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr "所選的優先順序將用於 banIP 背景處理。"
msgid "Timestamp"
msgstr "時間戳"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:516
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
msgid "Topic for banIP notification E-Mails."
msgstr "banIP 通知郵件的主題。"
msgid "WAN-Forward (packets)"
msgstr "廣域網路轉發 (資料封包)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
-#: 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:420
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "WAN-Forward Chain"
msgstr "廣域網路轉發鏈"
msgid "WAN-Input (packets)"
msgstr "廣域網路輸入 (資料封包)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420
-#: 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:419
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
msgid "WAN-Input Chain"
msgstr "廣域網路輸入鏈"
"it!)."
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:481
msgid "alert"
msgstr "報警"
msgid "banIP"
msgstr "禁止IP"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
msgid "crit"
msgstr "關鍵項目"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
msgid "debug"
msgstr "偵錯"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "emerg"
msgstr "緊急項目"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:483
msgid "err"
msgstr "錯誤項目"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
msgid "info"
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:444
-#: 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:433
+#: 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:453
msgid "local allowlist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455
+#: 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:444
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "local blocklist"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "memory (default)"
msgstr "記憶體 (預設)"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "notice"
msgstr "通知"
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "performance"
msgstr "效能"
msgid "start (default)"
msgstr ""
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:484
msgid "warn (default)"
msgstr "警告 (預設)"
+#~ msgid "Blocklist Feeds"
+#~ msgstr "黑名單來源"
+
#~ msgid "Active Subnets"
#~ msgstr "作用中子網路"