luci-app-banip: sync with banIP 0.8.2
authorDirk Brenken <dev@brenken.org>
Wed, 8 Mar 2023 21:22:04 +0000 (22:22 +0100)
committerDirk Brenken <dev@brenken.org>
Wed, 8 Mar 2023 21:22:04 +0000 (22:22 +0100)
* add a warning popup to Allow-/Blocklist if the filesize >= 100 kb
* support the new 'ban_reportelements' option
* sync translations

Signed-off-by: Dirk Brenken <dev@brenken.org>
41 files changed:
applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js
applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js
applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js
applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js
applications/luci-app-banip/po/ar/banip.po
applications/luci-app-banip/po/bg/banip.po
applications/luci-app-banip/po/bn_BD/banip.po
applications/luci-app-banip/po/ca/banip.po
applications/luci-app-banip/po/cs/banip.po
applications/luci-app-banip/po/da/banip.po
applications/luci-app-banip/po/de/banip.po
applications/luci-app-banip/po/el/banip.po
applications/luci-app-banip/po/en/banip.po
applications/luci-app-banip/po/es/banip.po
applications/luci-app-banip/po/fi/banip.po
applications/luci-app-banip/po/fr/banip.po
applications/luci-app-banip/po/he/banip.po
applications/luci-app-banip/po/hi/banip.po
applications/luci-app-banip/po/hu/banip.po
applications/luci-app-banip/po/it/banip.po
applications/luci-app-banip/po/ja/banip.po
applications/luci-app-banip/po/ko/banip.po
applications/luci-app-banip/po/mr/banip.po
applications/luci-app-banip/po/ms/banip.po
applications/luci-app-banip/po/nb_NO/banip.po
applications/luci-app-banip/po/nl/banip.po
applications/luci-app-banip/po/pl/banip.po
applications/luci-app-banip/po/pt/banip.po
applications/luci-app-banip/po/pt_BR/banip.po
applications/luci-app-banip/po/ro/banip.po
applications/luci-app-banip/po/ru/banip.po
applications/luci-app-banip/po/sk/banip.po
applications/luci-app-banip/po/sv/banip.po
applications/luci-app-banip/po/sw/banip.po
applications/luci-app-banip/po/templates/banip.pot
applications/luci-app-banip/po/tr/banip.po
applications/luci-app-banip/po/uk/banip.po
applications/luci-app-banip/po/vi/banip.po
applications/luci-app-banip/po/zh_Hans/banip.po
applications/luci-app-banip/po/zh_Hant/banip.po
applications/luci-app-banip/root/usr/share/rpcd/acl.d/luci-app-banip.json

index 792642d6bd5cd9aea89afdf7dd9721572840c40f..07175a4fce78bb4d33aaed37e6f9732f5381bc6e 100644 (file)
@@ -5,7 +5,10 @@
 
 return view.extend({
        load: function () {
-               return L.resolveDefault(fs.read_direct('/etc/banip/banip.allowlist'), '');
+               return Promise.all([
+                       L.resolveDefault(fs.stat('/etc/banip/banip.allowlist'), {}),
+                       L.resolveDefault(fs.read_direct('/etc/banip/banip.allowlist'), '')
+               ]);
        },
        handleSave: function (ev) {
                var value = ((document.querySelector('textarea').value || '').trim().toLowerCase().replace(/\r\n/g, '\n')) + '\n';
@@ -18,6 +21,9 @@ return view.extend({
                        });
        },
        render: function (allowlist) {
+               if (allowlist[0].size >= 100000) {
+                       ui.addNotification(null, E('p', _('The allowlist is too big, unable to save modifications.')), 'error');
+               }
                return E([
                        E('p', {},
                                _('This is the local banIP allowlist that will permit certain MAC/IP/CIDR addresses.<br /> \
@@ -28,7 +34,7 @@ return view.extend({
                                        'spellcheck': 'false',
                                        'wrap': 'off',
                                        'rows': 25
-                               }, [allowlist != null ? allowlist : ''])
+                               }, [allowlist[1] != null ? allowlist[1] : ''])
                        )
                ]);
        },
index 888a189ed008802fc50f73f29e860592cb20fbc4..75560fd6e1fb541ef12ddd84bf2cbbbb1eba89c6 100644 (file)
@@ -5,7 +5,10 @@
 
 return view.extend({
        load: function () {
-               return L.resolveDefault(fs.read_direct('/etc/banip/banip.blocklist'), '');
+               return Promise.all([
+                       L.resolveDefault(fs.stat('/etc/banip/banip.blocklist'), {}),
+                       L.resolveDefault(fs.read_direct('/etc/banip/banip.blocklist'), '')
+               ]);
        },
        handleSave: function (ev) {
                var value = ((document.querySelector('textarea').value || '').trim().toLowerCase().replace(/\r\n/g, '\n')) + '\n';
@@ -18,6 +21,9 @@ return view.extend({
                        });
        },
        render: function (blocklist) {
+               if (blocklist[0].size >= 100000) {
+                       ui.addNotification(null, E('p', _('The blocklist is too big, unable to save modifications.')), 'error');
+               }
                return E([
                        E('p', {},
                                _('This is the local banIP blocklist that will prevent certain MAC/IP/CIDR addresses.<br /> \
@@ -28,7 +34,7 @@ return view.extend({
                                        'spellcheck': 'false',
                                        'wrap': 'off',
                                        'rows': 25
-                               }, [blocklist != null ? blocklist : ''])
+                               }, [blocklist[1] != null ? blocklist[1] : ''])
                        )
                ]);
        },
index aa10f7e03bada1330390825ade3da5ad3c387ec9..29791e75c33c10d8dedc371c6d9a46e04636774c 100644 (file)
@@ -362,6 +362,10 @@ return view.extend({
                o.placeholder = '/tmp/banIP-report';
                o.rmempty = true;
 
+               o = s.taboption('advanced', form.Flag, 'ban_reportelements', _('Report Elements'), _('List Set elements in the report, disable this to speed up the report significantly.'));
+               o.default = 1
+               o.optional = true;
+
                o = s.taboption('advanced', form.Flag, 'ban_fetchinsecure', _('Download Insecure'), _('Don\'t check SSL server certificates during download.'));
                o.rmempty = true;
 
index 1371d6d06b7e6ce433c14f8df9a995c6e896a6b4..2d395864357bbfd8edad434950909d33e30d0fb0 100644 (file)
@@ -132,7 +132,7 @@ return view.extend({
        load: function () {
                return Promise.all([
                        L.resolveDefault(fs.exec_direct('/etc/init.d/banip', ['report', 'json']), '{}'),
-                       L.resolveDefault(fs.exec_direct('/usr/sbin/nft', ['-tj', 'list', 'table', 'inet', 'banIP']), '{}')
+                       L.resolveDefault(fs.exec_direct('/usr/sbin/nft', ['-tj', 'list', 'ruleset']), '{}')
                ]);
        },
 
index ed20d28916101c558fc6a08ca99bacdf13dadb85..5821163cbe8be3ae8c001707fc05b243abaaf1da 100644 (file)
@@ -15,31 +15,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -51,7 +51,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -59,11 +59,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -71,7 +71,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr ""
 
@@ -100,21 +100,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -122,11 +122,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -142,7 +142,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -150,7 +150,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -165,7 +165,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "إلغاء"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -182,7 +182,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr ""
 
@@ -202,11 +202,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr ""
 
@@ -218,15 +218,15 @@ msgstr "تنزيل المعلمات"
 msgid "Download Utility"
 msgstr "تحميل الأداة"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr "ملف تعريف البريد الإلكتروني"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr "عنوان مستقبل البريد الإلكتروني"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr "عنوان مرسل البريد الإلكتروني"
 
@@ -234,7 +234,7 @@ msgstr "عنوان مرسل البريد الإلكتروني"
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr "موضوع البريد الإلكتروني"
 
@@ -274,11 +274,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -332,7 +332,7 @@ msgstr "معلومة"
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -348,15 +348,15 @@ msgstr ""
 msgid "Less Priority"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -364,6 +364,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -372,7 +378,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -380,7 +386,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr ""
 
@@ -388,7 +394,7 @@ msgstr ""
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr ""
 
@@ -446,7 +452,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -461,7 +467,7 @@ msgstr ""
 msgid "Overview"
 msgstr "نظرة عامة"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 
@@ -469,11 +475,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -491,11 +497,15 @@ msgstr ""
 msgid "Report Directory"
 msgstr "دليل التقارير"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr "إعادة تشغيل"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -536,7 +546,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr ""
 
@@ -565,7 +575,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -607,7 +617,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -627,14 +645,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -651,7 +669,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr ""
 
@@ -659,8 +677,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr "تأخير الزناد"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -676,7 +694,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -684,7 +702,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index e9608e8dcb528f336104a46aeb56523690d3a1db..03d480f696445f4e77296b63f201c3651720908c 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr "ASNs"
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr "Автоматично засичане"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -149,7 +149,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -164,7 +164,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "Отмени"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -181,7 +181,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr "Държави"
 
@@ -201,11 +201,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr "Не проверявай SSL сертификати по време на сваляне."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr "Сваляй несигурно"
 
@@ -217,15 +217,15 @@ msgstr "Параметри за теглене"
 msgid "Download Utility"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr "E-Mail Профил"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr "E-Mail Изпращач"
 
@@ -233,7 +233,7 @@ msgstr "E-Mail Изпращач"
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr "E-Mail Тема"
 
@@ -273,11 +273,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr "Информация"
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -347,15 +347,15 @@ msgstr ""
 msgid "Less Priority"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -363,6 +363,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -371,7 +377,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -379,7 +385,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr ""
 
@@ -387,7 +393,7 @@ msgstr ""
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr ""
 
@@ -445,7 +451,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -460,7 +466,7 @@ msgstr ""
 msgid "Overview"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 
@@ -468,11 +474,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -490,11 +496,15 @@ msgstr ""
 msgid "Report Directory"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -535,7 +545,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr ""
 
@@ -564,7 +574,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -606,7 +616,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -626,14 +644,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -650,7 +668,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr ""
 
@@ -658,8 +676,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -675,7 +693,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -683,7 +701,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index f8d03bd74af7570cd3bef6e89155d912d5a0671c..3ed1666d82740a60596fbd602b29ac1bd633d036 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr ""
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -149,7 +149,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -164,7 +164,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "বাতিল করুন"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -181,7 +181,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr ""
 
@@ -201,11 +201,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr ""
 
@@ -217,15 +217,15 @@ msgstr ""
 msgid "Download Utility"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr ""
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr ""
 
@@ -273,11 +273,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr ""
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -347,15 +347,15 @@ msgstr ""
 msgid "Less Priority"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -363,6 +363,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -371,7 +377,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -379,7 +385,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr ""
 
@@ -387,7 +393,7 @@ msgstr ""
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr ""
 
@@ -445,7 +451,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -460,7 +466,7 @@ msgstr ""
 msgid "Overview"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 
@@ -468,11 +474,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -490,11 +496,15 @@ msgstr ""
 msgid "Report Directory"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -535,7 +545,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr ""
 
@@ -564,7 +574,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -606,7 +616,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -626,14 +644,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -650,7 +668,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr ""
 
@@ -658,8 +676,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -675,7 +693,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -683,7 +701,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index 5aec859af09fbef54e3464bac96a7bcf3d0ca371..aeee7a358ee2a76d5a7b2fa9e24669479ca41bc7 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr ""
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -149,7 +149,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -164,7 +164,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "Cancel•lar"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -181,7 +181,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr ""
 
@@ -201,11 +201,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr ""
 
@@ -217,15 +217,15 @@ msgstr "Paràmetres de descàrrega"
 msgid "Download Utility"
 msgstr "Utilitat de baixades"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr "Adreça del destinatari de correu"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr ""
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr ""
 
@@ -273,11 +273,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr "Informació"
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -347,15 +347,15 @@ msgstr ""
 msgid "Less Priority"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -363,6 +363,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -371,7 +377,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -379,7 +385,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr ""
 
@@ -387,7 +393,7 @@ msgstr ""
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr ""
 
@@ -445,7 +451,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -460,7 +466,7 @@ msgstr ""
 msgid "Overview"
 msgstr "Visió de conjunt"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 
@@ -468,11 +474,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -490,11 +496,15 @@ msgstr "Torna a carregar"
 msgid "Report Directory"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr "Reiniciar"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -535,7 +545,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr ""
 
@@ -564,7 +574,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -606,7 +616,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -626,14 +644,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -650,7 +668,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr ""
 
@@ -658,8 +676,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -675,7 +693,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -683,7 +701,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index 2e3434c23841b78b7cbde63579cf0ff192320416..d9f7138f11e212cf3b9d06b25d4f185aeae7dd09 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr ""
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -149,7 +149,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -164,7 +164,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "Zrušit"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -181,7 +181,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr ""
 
@@ -201,11 +201,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr ""
 
@@ -217,15 +217,15 @@ msgstr ""
 msgid "Download Utility"
 msgstr "Nástroj pro stahování"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr ""
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr ""
 
@@ -273,11 +273,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr ""
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -347,15 +347,15 @@ msgstr ""
 msgid "Less Priority"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -363,6 +363,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -371,7 +377,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -379,7 +385,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr ""
 
@@ -387,7 +393,7 @@ msgstr ""
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr ""
 
@@ -445,7 +451,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -460,7 +466,7 @@ msgstr ""
 msgid "Overview"
 msgstr "Přehled"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 
@@ -468,11 +474,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -490,11 +496,15 @@ msgstr "Znovu načíst"
 msgid "Report Directory"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -535,7 +545,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr ""
 
@@ -564,7 +574,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -606,7 +616,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -626,14 +644,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -650,7 +668,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr ""
 
@@ -658,8 +676,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr "Prodleva spuštění"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -675,7 +693,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -683,7 +701,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index 7c0c395b2f4141f3a8868d36b7637f98461c528a..ad5e0acb970332e501c901c63de5eb5004b35771 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr "ASN'er"
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr "Automatisk detektering"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -149,7 +149,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -164,7 +164,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "Annuller"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -181,7 +181,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr "Lande"
 
@@ -201,11 +201,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr "Kontroller ikke SSL-servercertifikater under download."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr "Download usikker"
 
@@ -217,15 +217,15 @@ msgstr "Download parametre"
 msgid "Download Utility"
 msgstr "Download hjælpeprogram"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr "E-mail profil"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr "Modtagerens e-mailadresse"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr "E-mail afsenderadresse"
 
@@ -233,7 +233,7 @@ msgstr "E-mail afsenderadresse"
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr "E-mail emne"
 
@@ -273,11 +273,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr "Information"
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -347,15 +347,15 @@ msgstr "Mindste prioritet"
 msgid "Less Priority"
 msgstr "Mindre prioritet"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -363,6 +363,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -372,7 +378,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -380,7 +386,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr "Loggrænse"
 
@@ -388,7 +394,7 @@ msgstr "Loggrænse"
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr "Log Vilkår"
 
@@ -446,7 +452,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr "Normal prioritet (standard)"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -461,7 +467,7 @@ msgstr ""
 msgid "Overview"
 msgstr "Oversigt"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 "Analyser kun det sidste angivne antal logposter for mistænkelige hændelser."
@@ -470,11 +476,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr "Profil, der anvendes af \"msmtp\" til banIP-meddelelses-e-mails."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -492,11 +498,15 @@ msgstr ""
 msgid "Report Directory"
 msgstr "Rapportmappe"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr "Genstart"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -537,7 +547,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr "Afsenderadresse for banIP-meddelelses-e-mails."
 
@@ -566,7 +576,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -608,7 +618,15 @@ msgstr "Målmappe for IPSet-relaterede rapportfiler."
 msgid "Target directory for compressed source list backups."
 msgstr "Målmappe for komprimerede sikkerhedskopier af kildelister."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -628,14 +646,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -652,7 +670,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr "Tidsstempel"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr "Emne for banIP-meddelelses-e-mails."
 
@@ -660,8 +678,8 @@ msgstr "Emne for banIP-meddelelses-e-mails."
 msgid "Trigger Delay"
 msgstr "Udløserforsinkelse"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -677,7 +695,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -685,7 +703,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index b4a918ad504eac004530af18eb34963f63e29b41..48fc2f6815d79f3f548387cd830cdaa5a02d4fcd 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr "Autonome Systemnummern"
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr "Automatische Erkennung"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -149,7 +149,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -164,7 +164,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "Abbrechen"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -181,7 +181,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr "Länder"
 
@@ -201,11 +201,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr "Während des Downloads keine SSL-Serverzertifikate überprüfen."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr "Unsicher herunterladen"
 
@@ -217,15 +217,15 @@ msgstr "Download Parameter"
 msgid "Download Utility"
 msgstr "Download-Werkzeug"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr "E-Mail-Profil"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr "E-Mail Empfängeradresse"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr "E-Mail Absenderadresse"
 
@@ -233,7 +233,7 @@ msgstr "E-Mail Absenderadresse"
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr "E-Mail-Thema"
 
@@ -273,11 +273,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr "Informationen"
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -347,15 +347,15 @@ msgstr "Niedrigste Priorität"
 msgid "Less Priority"
 msgstr "Niedrige Priorität"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -363,6 +363,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -373,7 +379,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -381,7 +387,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr "Protokollbegrenzung"
 
@@ -389,7 +395,7 @@ msgstr "Protokollbegrenzung"
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr "Protokollbedingungen"
 
@@ -447,7 +453,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr "Normale Priorität (Voreinstellung)"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -462,7 +468,7 @@ msgstr ""
 msgid "Overview"
 msgstr "Übersicht"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 "Nur die zuletzt angegebene Anzahl der Protokolleinträge auf verdächtige "
@@ -472,11 +478,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr "Von 'msmtp' verwendetes Profil für banIP-Benachrichtigungs-E-Mails."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -494,11 +500,15 @@ msgstr "Neu laden"
 msgid "Report Directory"
 msgstr "Report-Verzeichnis"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr "Neustart"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -539,7 +549,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr "Absenderadresse für banIP-Benachrichtigungs-E-Mails."
 
@@ -568,7 +578,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -610,7 +620,15 @@ msgstr "Zielverzeichnis für IPSet-bezogene Berichtsdateien."
 msgid "Target directory for compressed source list backups."
 msgstr "Zielverzeichnis für komprimierte Quelllistensicherungen."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -630,14 +648,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -654,7 +672,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr "Zeitstempel"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr "Betreff für banIP-Benachrichtigungs-E-Mails."
 
@@ -662,8 +680,8 @@ msgstr "Betreff für banIP-Benachrichtigungs-E-Mails."
 msgid "Trigger Delay"
 msgstr "Verzögerung der Trigger-Bedingung"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -679,7 +697,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -687,7 +705,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index c8a95ce1d17a858e1c36f62648aa3c37593f4c51..da2b0a742b2d763ba1c4b63d812c239c21a09272 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr ""
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -149,7 +149,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -164,7 +164,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "Ακύρωση"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -181,7 +181,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr ""
 
@@ -201,11 +201,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr ""
 
@@ -217,15 +217,15 @@ msgstr ""
 msgid "Download Utility"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr ""
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr ""
 
@@ -273,11 +273,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr ""
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -347,15 +347,15 @@ msgstr ""
 msgid "Less Priority"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -363,6 +363,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -371,7 +377,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -379,7 +385,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr ""
 
@@ -387,7 +393,7 @@ msgstr ""
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr ""
 
@@ -445,7 +451,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -460,7 +466,7 @@ msgstr ""
 msgid "Overview"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 
@@ -468,11 +474,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -490,11 +496,15 @@ msgstr ""
 msgid "Report Directory"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -535,7 +545,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr ""
 
@@ -564,7 +574,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -606,7 +616,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -626,14 +644,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -650,7 +668,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr ""
 
@@ -658,8 +676,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -675,7 +693,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -683,7 +701,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index 15b778dd7432cfb312b06aa922b7b814268e3e53..9f193983ee903f86a8bb0fc92fa57eec337be5d6 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr ""
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -149,7 +149,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -164,7 +164,7 @@ msgstr ""
 msgid "Cancel"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -181,7 +181,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr ""
 
@@ -201,11 +201,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr ""
 
@@ -217,15 +217,15 @@ msgstr ""
 msgid "Download Utility"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr ""
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr ""
 
@@ -273,11 +273,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr ""
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -347,15 +347,15 @@ msgstr ""
 msgid "Less Priority"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -363,6 +363,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -371,7 +377,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -379,7 +385,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr ""
 
@@ -387,7 +393,7 @@ msgstr ""
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr ""
 
@@ -445,7 +451,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -460,7 +466,7 @@ msgstr ""
 msgid "Overview"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 
@@ -468,11 +474,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -490,11 +496,15 @@ msgstr ""
 msgid "Report Directory"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -535,7 +545,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr ""
 
@@ -564,7 +574,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -606,7 +616,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -626,14 +644,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -650,7 +668,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr ""
 
@@ -658,8 +676,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -675,7 +693,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -683,7 +701,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index 268a2779966a13d6c029f80c2175b4edae490530..1c13a1b9415126336c5fea8bd5dab96ef521e59f 100644 (file)
@@ -17,31 +17,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -53,7 +53,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -61,11 +61,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -73,7 +73,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr "ASNs"
 
@@ -102,21 +102,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -124,11 +124,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr "Detección automática"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -144,7 +144,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -152,7 +152,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -167,7 +167,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "Cancelar"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -184,7 +184,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr "Países"
 
@@ -204,11 +204,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr "No verificar los certificados SSL del servidor durante la descarga."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr "Descarga insegura"
 
@@ -220,15 +220,15 @@ msgstr "Descargar parámetros"
 msgid "Download Utility"
 msgstr "Utilidad de descarga"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr "Perfil de correo electrónico"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr "Dirección del destinatario de correo electrónico"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr "Dirección del remitente de correo electrónico"
 
@@ -236,7 +236,7 @@ msgstr "Dirección del remitente de correo electrónico"
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr "Tema del correo electrónico"
 
@@ -276,11 +276,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -334,7 +334,7 @@ msgstr "Información"
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -350,15 +350,15 @@ msgstr "Prioridad mínima"
 msgid "Less Priority"
 msgstr "Menos prioridad"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -366,6 +366,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -375,7 +381,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -383,7 +389,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr "Límite de registro"
 
@@ -391,7 +397,7 @@ msgstr "Límite de registro"
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr "Términos de registro"
 
@@ -449,7 +455,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr "Prioridad normal (predeterminado)"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -464,7 +470,7 @@ msgstr ""
 msgid "Overview"
 msgstr "Visión general"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 "Analice solo el último número indicado de entradas de registro para detectar "
@@ -474,13 +480,13 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 "Perfil utilizado por 'msmtp' para correos electrónicos de notificación de "
 "banIP."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -498,11 +504,15 @@ msgstr "Recargar"
 msgid "Report Directory"
 msgstr "Informar directorio"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr "Reiniciar"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -543,7 +553,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr ""
 "Dirección del remitente para correos electrónicos de notificación de banIP."
@@ -573,7 +583,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -618,7 +628,15 @@ msgstr ""
 "Directorio de destino para copias de seguridad de listas de origen "
 "comprimidas."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -638,14 +656,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -662,7 +680,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr "Marca de tiempo"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr "Tema para correos electrónicos de notificación de banIP."
 
@@ -670,8 +688,8 @@ msgstr "Tema para correos electrónicos de notificación de banIP."
 msgid "Trigger Delay"
 msgstr "Retraso de disparo"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -687,7 +705,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -695,7 +713,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index 8c177c6dadb964a9beb1d66366ba9caf04bd44aa..f50aaa61c090e164e7fc19637da894583789730a 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr "ASN:t"
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr "Automaattinen tunnistus"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -149,7 +149,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -164,7 +164,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "Peruuta"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -181,7 +181,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr "Maat"
 
@@ -201,11 +201,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr "Älä tarkista SSL-palvelinvarmenteita latauksen aikana."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr ""
 
@@ -217,15 +217,15 @@ msgstr ""
 msgid "Download Utility"
 msgstr "Lataustyökalu"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr ""
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr ""
 
@@ -273,11 +273,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr ""
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -347,15 +347,15 @@ msgstr ""
 msgid "Less Priority"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -363,6 +363,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -371,7 +377,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -379,7 +385,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr ""
 
@@ -387,7 +393,7 @@ msgstr ""
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr ""
 
@@ -445,7 +451,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -460,7 +466,7 @@ msgstr ""
 msgid "Overview"
 msgstr "Yleiskatsaus"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 
@@ -468,11 +474,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -490,11 +496,15 @@ msgstr ""
 msgid "Report Directory"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr "Käynnistä uudelleen"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -535,7 +545,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr ""
 
@@ -564,7 +574,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -606,7 +616,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -626,14 +644,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -650,7 +668,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr ""
 
@@ -658,8 +676,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -675,7 +693,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -683,7 +701,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index d7392565cb9b198c635d7a9383e08d67c32048c9..e367f86e53dac76601e04464668b73151afaae56 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr "Les ASN"
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr "Détection automatique"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -149,7 +149,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -164,7 +164,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "Annuler"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -181,7 +181,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr "Pays"
 
@@ -201,12 +201,12 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 "Ne pas vérifier les certificats SSL du serveur pendant le téléchargement."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr "Téléchargement non sécurisé"
 
@@ -218,15 +218,15 @@ msgstr "Paramètres de téléchargement"
 msgid "Download Utility"
 msgstr "Télécharger l'utilitaire"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr "Courriel du profil"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr "Adresse courriel du destinataire"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr "Adresse courriel de l'expéditeur"
 
@@ -234,7 +234,7 @@ msgstr "Adresse courriel de l'expéditeur"
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr "Objet du courriel"
 
@@ -274,11 +274,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -332,7 +332,7 @@ msgstr "Information"
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -348,15 +348,15 @@ msgstr "Priorité minimale"
 msgid "Less Priority"
 msgstr "Moins prioritaire"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -364,6 +364,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -374,7 +380,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -382,7 +388,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr "Limite de journalisation"
 
@@ -390,7 +396,7 @@ msgstr "Limite de journalisation"
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr "Conditions de journalisation"
 
@@ -448,7 +454,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr "Priorité normale (par défaut)"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -463,7 +469,7 @@ msgstr ""
 msgid "Overview"
 msgstr "Aperçu"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 "Analyser uniquement le dernier nombre indiqué d'entrées de journal pour les "
@@ -473,13 +479,13 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 "Profil utilisé par 'msmtp' pour les courriel de notification de bannissement "
 "IP."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -497,11 +503,15 @@ msgstr "Recharger"
 msgid "Report Directory"
 msgstr "Répertoire des rapports"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr "Redémarrer"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -542,7 +552,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr ""
 "Adresse de l'expéditeur des courriels de notification de bannissement IP."
@@ -572,7 +582,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -615,7 +625,15 @@ msgid "Target directory for compressed source list backups."
 msgstr ""
 "Répertoire cible pour les sauvegardes compressées de la liste des sources."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -635,14 +653,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -659,7 +677,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr "Horodatage"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr "Rubrique pour les courriels de notification banIP."
 
@@ -667,8 +685,8 @@ msgstr "Rubrique pour les courriels de notification banIP."
 msgid "Trigger Delay"
 msgstr "Délai de déclenchement"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -684,7 +702,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -692,7 +710,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index b92dbd02bf72347dc750da9bc2b7d7aa98088cca..ab270db232c93a4a21601de0457f42746a6a3f8f 100644 (file)
@@ -15,31 +15,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -51,7 +51,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -59,11 +59,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -71,7 +71,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr ""
 
@@ -100,21 +100,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -122,11 +122,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -142,7 +142,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -150,7 +150,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -165,7 +165,7 @@ msgstr ""
 msgid "Cancel"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -182,7 +182,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr ""
 
@@ -202,11 +202,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr ""
 
@@ -218,15 +218,15 @@ msgstr ""
 msgid "Download Utility"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr ""
 
@@ -234,7 +234,7 @@ msgstr ""
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr ""
 
@@ -274,11 +274,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -332,7 +332,7 @@ msgstr ""
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -348,15 +348,15 @@ msgstr ""
 msgid "Less Priority"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -364,6 +364,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -372,7 +378,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -380,7 +386,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr ""
 
@@ -388,7 +394,7 @@ msgstr ""
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr ""
 
@@ -446,7 +452,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -461,7 +467,7 @@ msgstr ""
 msgid "Overview"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 
@@ -469,11 +475,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -491,11 +497,15 @@ msgstr ""
 msgid "Report Directory"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -536,7 +546,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr ""
 
@@ -565,7 +575,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -607,7 +617,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -627,14 +645,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -651,7 +669,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr ""
 
@@ -659,8 +677,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -676,7 +694,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -684,7 +702,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index fe146b0d7bdbd0cc2422e56471c8d8b7c612c8b7..32fc187c86063aa382ae8d954708d59c576e887f 100644 (file)
@@ -8,31 +8,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -44,7 +44,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -52,11 +52,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -64,7 +64,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr ""
 
@@ -93,21 +93,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -115,11 +115,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -135,7 +135,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -143,7 +143,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -158,7 +158,7 @@ msgstr ""
 msgid "Cancel"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -175,7 +175,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr ""
 
@@ -195,11 +195,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr ""
 
@@ -211,15 +211,15 @@ msgstr ""
 msgid "Download Utility"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr ""
 
@@ -227,7 +227,7 @@ msgstr ""
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr ""
 
@@ -267,11 +267,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -325,7 +325,7 @@ msgstr ""
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -341,15 +341,15 @@ msgstr ""
 msgid "Less Priority"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -357,6 +357,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -365,7 +371,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -373,7 +379,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr ""
 
@@ -381,7 +387,7 @@ msgstr ""
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr ""
 
@@ -439,7 +445,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -454,7 +460,7 @@ msgstr ""
 msgid "Overview"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 
@@ -462,11 +468,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -484,11 +490,15 @@ msgstr ""
 msgid "Report Directory"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -529,7 +539,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr ""
 
@@ -558,7 +568,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -600,7 +610,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -620,14 +638,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -644,7 +662,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr ""
 
@@ -652,8 +670,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -669,7 +687,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -677,7 +695,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index 2ebd39db775fd4a78f498a03dc15c41c3ff6852a..79e5467222060794dfc360bf7f53ee751823b7da 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr "AS számok"
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr "Automatikus észlelés"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -149,7 +149,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -164,7 +164,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "Mégse"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -181,7 +181,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr "Országok"
 
@@ -201,11 +201,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr ""
 
@@ -217,15 +217,15 @@ msgstr ""
 msgid "Download Utility"
 msgstr "Letöltési segédprogram"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr "E-Mail profil"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr "E-Mail küldő cím"
 
@@ -233,7 +233,7 @@ msgstr "E-Mail küldő cím"
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 #, fuzzy
 msgid "E-Mail Topic"
 msgstr "E-Mail téma"
@@ -274,11 +274,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -332,7 +332,7 @@ msgstr "Információ"
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -348,15 +348,15 @@ msgstr "Legkisebb prioritás"
 msgid "Less Priority"
 msgstr "Kisebb prioritás"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -364,6 +364,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -372,7 +378,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -380,7 +386,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr ""
 
@@ -388,7 +394,7 @@ msgstr ""
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr ""
 
@@ -446,7 +452,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr "Közepes prioritás (alapértelmezett)"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -461,7 +467,7 @@ msgstr ""
 msgid "Overview"
 msgstr "Áttekintés"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 
@@ -469,11 +475,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -491,11 +497,15 @@ msgstr "Újratöltés"
 msgid "Report Directory"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr "Újraindítás"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -536,7 +546,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr ""
 
@@ -565,7 +575,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -607,7 +617,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -627,14 +645,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -651,7 +669,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr ""
 
@@ -659,8 +677,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr "Aktiváló késleltetése"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -676,7 +694,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -684,7 +702,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index eacdc18469b906bdbd54bce9850304f8b91982b3..a63c380f0723540e036cb0dd061c10ed6a0658ab 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr ""
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -149,7 +149,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -164,7 +164,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "Annulla"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -181,7 +181,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr ""
 
@@ -201,11 +201,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr "Non controllare i certificati del server SSL durante il download."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr "Download non sicuro"
 
@@ -217,15 +217,15 @@ msgstr "Parametri di download"
 msgid "Download Utility"
 msgstr "Utilità di download"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr "Profilo e-mail"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr "Indirizzo e-mail destinatario"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr "Indirizzo e-mail mittente"
 
@@ -233,7 +233,7 @@ msgstr "Indirizzo e-mail mittente"
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr "Oggetto e-mail"
 
@@ -273,11 +273,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr "Informazioni"
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -347,15 +347,15 @@ msgstr ""
 msgid "Less Priority"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -363,6 +363,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -371,7 +377,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -379,7 +385,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr ""
 
@@ -387,7 +393,7 @@ msgstr ""
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr ""
 
@@ -445,7 +451,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -460,7 +466,7 @@ msgstr ""
 msgid "Overview"
 msgstr "Riepilogo"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 
@@ -468,11 +474,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -490,11 +496,15 @@ msgstr "Aggiorna"
 msgid "Report Directory"
 msgstr "Directory dei report"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr "Riavvia"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -535,7 +545,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr ""
 
@@ -564,7 +574,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -606,7 +616,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -626,14 +644,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -650,7 +668,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr ""
 
@@ -658,8 +676,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -675,7 +693,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -683,7 +701,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index 617c67c1f59866639a7125d9f088233246834ab0..c71163d31a6bdab66a72304e6d199bcd66f6bbe2 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr ""
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr "自動検出"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -149,7 +149,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -164,7 +164,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "キャンセル"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -181,7 +181,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr "国"
 
@@ -201,11 +201,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr ""
 
@@ -217,15 +217,15 @@ msgstr "ダウンロードのパラメータ"
 msgid "Download Utility"
 msgstr "ダウンロードユーティリティ"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr "Eメールプロファイル"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr "Eメール受信アドレス"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr "Eメール送信者アドレス"
 
@@ -233,7 +233,7 @@ msgstr "Eメール送信者アドレス"
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr "Eメールトピック"
 
@@ -273,11 +273,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr "情報"
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -347,15 +347,15 @@ msgstr "最低の優先度"
 msgid "Less Priority"
 msgstr "低い優先度"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -363,6 +363,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -371,7 +377,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -379,7 +385,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr "ログ制限"
 
@@ -387,7 +393,7 @@ msgstr "ログ制限"
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr ""
 
@@ -445,7 +451,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr "通常の優先度 (デフォルト)"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -460,7 +466,7 @@ msgstr ""
 msgid "Overview"
 msgstr "概要"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 
@@ -468,11 +474,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -490,11 +496,15 @@ msgstr "リロード"
 msgid "Report Directory"
 msgstr "レポート ディレクトリ"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr "再起動"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -535,7 +545,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr ""
 
@@ -564,7 +574,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -606,7 +616,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -626,14 +644,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -650,7 +668,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr "タイムスタンプ"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr ""
 
@@ -658,8 +676,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr "トリガ遅延"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -675,7 +693,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -683,7 +701,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index eebb9465645b961d09fc2653690cc27b50765939..872c09b5bf5c2d2416ae4146748241133d89e23b 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr ""
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -142,7 +142,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -150,7 +150,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -165,7 +165,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "취소"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -182,7 +182,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr ""
 
@@ -202,11 +202,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr ""
 
@@ -218,15 +218,15 @@ msgstr ""
 msgid "Download Utility"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr ""
 
@@ -234,7 +234,7 @@ msgstr ""
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr ""
 
@@ -274,11 +274,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -332,7 +332,7 @@ msgstr "정보"
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -348,15 +348,15 @@ msgstr ""
 msgid "Less Priority"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -364,6 +364,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -372,7 +378,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -380,7 +386,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr ""
 
@@ -388,7 +394,7 @@ msgstr ""
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr ""
 
@@ -446,7 +452,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -461,7 +467,7 @@ msgstr ""
 msgid "Overview"
 msgstr "개요"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 
@@ -469,11 +475,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -491,11 +497,15 @@ msgstr ""
 msgid "Report Directory"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -536,7 +546,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr ""
 
@@ -565,7 +575,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -607,7 +617,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -627,14 +645,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -651,7 +669,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr ""
 
@@ -659,8 +677,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -676,7 +694,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -684,7 +702,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index 3285a07f157feab32c09ac835dc4268baaa068c8..a095ad89ed27cf150cb32ed4b018d383fec1cc74 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr ""
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -149,7 +149,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -164,7 +164,7 @@ msgstr ""
 msgid "Cancel"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -181,7 +181,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr ""
 
@@ -201,11 +201,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr ""
 
@@ -217,15 +217,15 @@ msgstr ""
 msgid "Download Utility"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr ""
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr ""
 
@@ -273,11 +273,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr ""
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -347,15 +347,15 @@ msgstr ""
 msgid "Less Priority"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -363,6 +363,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -371,7 +377,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -379,7 +385,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr ""
 
@@ -387,7 +393,7 @@ msgstr ""
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr ""
 
@@ -445,7 +451,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -460,7 +466,7 @@ msgstr ""
 msgid "Overview"
 msgstr "आढावा"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 
@@ -468,11 +474,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -490,11 +496,15 @@ msgstr "रीलोड करा"
 msgid "Report Directory"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -535,7 +545,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr ""
 
@@ -564,7 +574,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -606,7 +616,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -626,14 +644,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -650,7 +668,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr ""
 
@@ -658,8 +676,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -675,7 +693,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -683,7 +701,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index 3b156673c5a9fb518639efea93d4a1285e8c1309..04ea3f4f4517a92d21f16c423b285d2f3314b54a 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr ""
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -149,7 +149,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -164,7 +164,7 @@ msgstr ""
 msgid "Cancel"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -181,7 +181,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr ""
 
@@ -201,11 +201,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr ""
 
@@ -217,15 +217,15 @@ msgstr ""
 msgid "Download Utility"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr ""
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr ""
 
@@ -273,11 +273,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr ""
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -347,15 +347,15 @@ msgstr ""
 msgid "Less Priority"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -363,6 +363,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -371,7 +377,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -379,7 +385,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr ""
 
@@ -387,7 +393,7 @@ msgstr ""
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr ""
 
@@ -445,7 +451,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -460,7 +466,7 @@ msgstr ""
 msgid "Overview"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 
@@ -468,11 +474,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -490,11 +496,15 @@ msgstr ""
 msgid "Report Directory"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -535,7 +545,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr ""
 
@@ -564,7 +574,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -606,7 +616,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -626,14 +644,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -650,7 +668,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr ""
 
@@ -658,8 +676,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -675,7 +693,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -683,7 +701,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index 79363ca165cd75c424e390d73abeb9b4098fe5a0..86870be8d5bd6b1546885894e96502380b878c92 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr ""
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -149,7 +149,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -164,7 +164,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "Avbryt"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -181,7 +181,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr ""
 
@@ -201,11 +201,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr ""
 
@@ -217,15 +217,15 @@ msgstr "Nedlastingsparametre"
 msgid "Download Utility"
 msgstr "Nedlastingsverktøy"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr "E-postprofil"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr "E-postsenderadresse"
 
@@ -233,7 +233,7 @@ msgstr "E-postsenderadresse"
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr "E-postemne"
 
@@ -273,11 +273,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr "Info"
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -347,15 +347,15 @@ msgstr ""
 msgid "Less Priority"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -363,6 +363,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -371,7 +377,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -379,7 +385,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr ""
 
@@ -387,7 +393,7 @@ msgstr ""
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr ""
 
@@ -445,7 +451,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -460,7 +466,7 @@ msgstr ""
 msgid "Overview"
 msgstr "Oversikt"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 
@@ -468,11 +474,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -490,11 +496,15 @@ msgstr ""
 msgid "Report Directory"
 msgstr "Rapportmappe"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr "Omstart"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -536,7 +546,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr ""
 
@@ -565,7 +575,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -607,7 +617,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -627,14 +645,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -651,7 +669,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr ""
 
@@ -659,8 +677,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr "Utløserforsinkelse"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -676,7 +694,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -684,7 +702,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index add39da26d74178656f2648811b6914710b4226e..8e4840bc7b70d7f2378ee111848c0ff2218af0bf 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr "ASN's"
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr "Autodetectie"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -149,7 +149,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -164,7 +164,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "Afbreken"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -181,7 +181,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr "Landen"
 
@@ -201,11 +201,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr "Tijdens download niet de SSL server certificaten controleren."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr "Onbeveiligd downloaden"
 
@@ -217,15 +217,15 @@ msgstr "Parameters downloaden"
 msgid "Download Utility"
 msgstr "Download hulpprogramma"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr "E-Mail profiel"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr "E-Mail adres van ontvanger"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr "E-Mail adres van verzender"
 
@@ -233,7 +233,7 @@ msgstr "E-Mail adres van verzender"
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr "E-Mail onderwerp"
 
@@ -273,11 +273,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr "Informatie"
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -347,15 +347,15 @@ msgstr "Laagste prioriteit"
 msgid "Less Priority"
 msgstr "Lage prioriteit"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -363,6 +363,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr "Lijst van beschikbare netwerkinterfaces die banIP starten."
@@ -371,7 +377,7 @@ msgstr "Lijst van beschikbare netwerkinterfaces die banIP starten."
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -379,7 +385,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr "Log limiet"
 
@@ -387,7 +393,7 @@ msgstr "Log limiet"
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 #, fuzzy
 msgid "Log Terms"
 msgstr "Log termen (sleutelwoorden)"
@@ -446,7 +452,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr "Normale prioriteit (standaard)"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -461,7 +467,7 @@ msgstr ""
 msgid "Overview"
 msgstr "Overzicht"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 "Laat alleen het aantal regels in de log zien van de verdachte gebeurtenissen."
@@ -470,12 +476,12 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 "Profiel gebruikt voor 'msmtp' voor banIP E-Mail berichten/notificaties."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -493,11 +499,15 @@ msgstr ""
 msgid "Report Directory"
 msgstr "Rapportage directory"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr "Herstart"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -540,7 +550,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr "Afzender e-mailadres voor de banIP email meldingen."
 
@@ -569,7 +579,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -611,7 +621,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -631,14 +649,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -655,7 +673,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr ""
 
@@ -663,8 +681,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -680,7 +698,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -688,7 +706,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index cb533d91e2c5f43b09b3184851676c69d6b0f6f6..8851a8eb39b2b2fc3b035edf672ec0ffda8566e6 100644 (file)
@@ -15,31 +15,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -51,7 +51,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -59,11 +59,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -71,7 +71,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr "ASN-y"
 
@@ -100,21 +100,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -122,11 +122,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr "Automatyczne wykrywanie"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -142,7 +142,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -150,7 +150,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -165,7 +165,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "Anuluj"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -182,7 +182,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr "Kraje"
 
@@ -202,11 +202,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr "Nie sprawdzaj certyfikatów SSL serwera podczas pobierania."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr "Niezabezpieczone pobieranie"
 
@@ -218,15 +218,15 @@ msgstr "Parametry pobierania"
 msgid "Download Utility"
 msgstr "Narzędzie pobierania"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr "Profil e-mail"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr "Adres e-mail odbiorcy"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr "Adres e-mail nadawcy"
 
@@ -234,7 +234,7 @@ msgstr "Adres e-mail nadawcy"
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr "Temat e-mail"
 
@@ -274,11 +274,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -332,7 +332,7 @@ msgstr "Informacje"
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -348,15 +348,15 @@ msgstr "Najniższy priorytet"
 msgid "Less Priority"
 msgstr "Mniejszy priorytet"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -364,6 +364,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -373,7 +379,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -381,7 +387,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr "Limit dziennika"
 
@@ -389,7 +395,7 @@ msgstr "Limit dziennika"
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr "Warunki dziennika"
 
@@ -447,7 +453,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr "Normalny priorytet (domyślny)"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -462,7 +468,7 @@ msgstr ""
 msgid "Overview"
 msgstr "Przegląd"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 "Analizuj tylko ostatnią podaną liczbę wpisów w dzienniku w poszukiwaniu "
@@ -472,12 +478,12 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 "Profil używany przez \"msmtp\" dla wiadomości e-mail z powiadomieniem banIP."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -495,11 +501,15 @@ msgstr "Przeładuj"
 msgid "Report Directory"
 msgstr "Katalog raportów"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr "Restartuj"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -540,7 +550,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr "Adres nadawcy wiadomości e-mail z powiadomieniem banIP."
 
@@ -569,7 +579,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -611,7 +621,15 @@ msgstr "Katalog docelowy dla plików raportów związanych z IPSet."
 msgid "Target directory for compressed source list backups."
 msgstr "Katalog docelowy dla kopii zapasowych skompresowanej listy źródeł."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -631,14 +649,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -655,7 +673,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr "Sygnatura czasowa"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr "Temat dla wiadomości e-mail z powiadomieniem banIP."
 
@@ -663,8 +681,8 @@ msgstr "Temat dla wiadomości e-mail z powiadomieniem banIP."
 msgid "Trigger Delay"
 msgstr "Opóźnienie wyzwalacza"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -680,7 +698,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -688,7 +706,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index 712e1c78a17a780c71ed74f007d9d4d512893a37..1ed5003292a07d70b93b41f199fb2990ef298914 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr "ASNs"
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr "Deteção automática"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -149,7 +149,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -164,7 +164,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "Cancelar"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -181,7 +181,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr "Países"
 
@@ -201,11 +201,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr "Não verificar os certificados de SSL do servidor durante a descarrega."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr "Descarregar inseguro"
 
@@ -217,15 +217,15 @@ msgstr "Parâmetros de Descarregamento"
 msgid "Download Utility"
 msgstr "Ferramenta para Descarregar"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr "Perfil de e-mail"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr "Endereço de e-mail do destinatário"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr "Endereço de e-mail do remetente"
 
@@ -233,7 +233,7 @@ msgstr "Endereço de e-mail do remetente"
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr "Assunto do e-mail"
 
@@ -273,11 +273,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr "Informação"
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -347,15 +347,15 @@ msgstr "Mínima Prioridade"
 msgid "Less Priority"
 msgstr "Menor Prioridade"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -363,6 +363,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -372,7 +378,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -380,7 +386,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr "Limite do Registo"
 
@@ -388,7 +394,7 @@ msgstr "Limite do Registo"
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr "Termos do registo"
 
@@ -446,7 +452,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr "Prioridade Normal (padrão)"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -461,7 +467,7 @@ msgstr ""
 msgid "Overview"
 msgstr "Visão Geral"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 "Analise apenas o último número declarado das entradas de registo na busca "
@@ -471,11 +477,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr "O perfil usado pelo 'msmtp' para os e-mails de notificação do banIP."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -493,11 +499,15 @@ msgstr "Recarregar"
 msgid "Report Directory"
 msgstr "Diretório de Relatórios"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr "Reiniciar"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -538,7 +548,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr "Endereço do remetente para os e-mails de notificação do banIP."
 
@@ -567,7 +577,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -610,7 +620,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr "O diretório de destino para os backups compactados da lista de origem."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -630,14 +648,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -654,7 +672,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr "Marca de Tempo"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr "Tópico para e-mails de notificação do banIP."
 
@@ -662,8 +680,8 @@ msgstr "Tópico para e-mails de notificação do banIP."
 msgid "Trigger Delay"
 msgstr "Atraso do Gatilho"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -679,7 +697,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -687,7 +705,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index cf333e21182c311ca2d79e4519898a054d6a1fb6..81357193d05233a48e60b53c6fc10e60ecd26f5b 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr "ASNs"
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr "Detecção Automática"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -149,7 +149,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -164,7 +164,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "Cancelar"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -181,7 +181,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr "Países"
 
@@ -201,11 +201,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr "Não verifique os certificados do servidor SSL durante o download."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr "Download inseguro"
 
@@ -217,15 +217,15 @@ msgstr "Parâmetros de Download"
 msgid "Download Utility"
 msgstr "Ferramenta para Baixar"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr "E-Mail do Perfil"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr "Endereço de E-Mail do Destinatário"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr "Endereço de E-Mail do Remetente"
 
@@ -233,7 +233,7 @@ msgstr "Endereço de E-Mail do Remetente"
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr "Assunto do E-Mail"
 
@@ -273,11 +273,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr "Informações"
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -347,15 +347,15 @@ msgstr "Mínima Prioridade"
 msgid "Less Priority"
 msgstr "Menor Prioridade"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -363,6 +363,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -372,7 +378,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -380,7 +386,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr "Limite do Registro"
 
@@ -388,7 +394,7 @@ msgstr "Limite do Registro"
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr "Termos do registro"
 
@@ -446,7 +452,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr "Prioridade Normal (padrão)"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -461,7 +467,7 @@ msgstr ""
 msgid "Overview"
 msgstr "Visão geral"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 "Analise apenas o último número declarado das entradas de registro na busca "
@@ -471,11 +477,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr "O perfil usado pelo 'msmtp' para os e-mails de notificação do banIP."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -493,11 +499,15 @@ msgstr "Recarregar"
 msgid "Report Directory"
 msgstr "Diretório do Relatório"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr "Reiniciar"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -538,7 +548,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr "Endereço do remetente para os e-mails de notificação do banIP."
 
@@ -567,7 +577,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -610,7 +620,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr "O diretório de destino para os backups compactados da lista de origem."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -630,14 +648,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -654,7 +672,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr "Marca de Tempo"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr "Tópico para e-mails de notificação do banIP."
 
@@ -662,8 +680,8 @@ msgstr "Tópico para e-mails de notificação do banIP."
 msgid "Trigger Delay"
 msgstr "Gatilho de Atraso"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -679,7 +697,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -687,7 +705,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index 92119a73853810e49fdcc9942f3a0142309f2118..da2f7e9eb192d33c6767309cfd95dd2fc87f0c70 100644 (file)
@@ -15,31 +15,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -51,7 +51,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -59,11 +59,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -71,7 +71,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr "ASNs"
 
@@ -100,21 +100,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -122,11 +122,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr "Detecție automată"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -142,7 +142,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -150,7 +150,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -165,7 +165,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "Anulare"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -182,7 +182,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr "Țări"
 
@@ -202,11 +202,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr "Nu verificați certificatele serverului SSL în timpul descărcării."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr "Descărcați Insecure"
 
@@ -218,15 +218,15 @@ msgstr "Parametrii de descărcare"
 msgid "Download Utility"
 msgstr "Utilitar descărcare"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr "Profil de e-mail"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr "Adresa de e-mail a destinatarului"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr "Adresa expeditorului de e-mail"
 
@@ -234,7 +234,7 @@ msgstr "Adresa expeditorului de e-mail"
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr "Subiect E-Mail"
 
@@ -274,11 +274,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -332,7 +332,7 @@ msgstr "Informație"
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -348,15 +348,15 @@ msgstr "Cea mai mică prioritate"
 msgid "Less Priority"
 msgstr "Prioritate mai mică"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -364,6 +364,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -373,7 +379,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -381,7 +387,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr "Limita de jurnal"
 
@@ -389,7 +395,7 @@ msgstr "Limita de jurnal"
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr "Termeni de jurnal"
 
@@ -447,7 +453,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr "Prioritate normală (implicită)"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -462,7 +468,7 @@ msgstr ""
 msgid "Overview"
 msgstr "Prezentare generală"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 "Analizează numai ultimul număr declarat de intrări de jurnal pentru "
@@ -472,12 +478,12 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 "Profilul utilizat de 'msmtp' pentru mesajele electronice de notificare banIP."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -495,11 +501,15 @@ msgstr ""
 msgid "Report Directory"
 msgstr "Director de rapoarte"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr "Reporniți"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -540,7 +550,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr "Adresa expeditorului pentru e-mailurile de notificare banIP."
 
@@ -569,7 +579,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -613,7 +623,15 @@ msgstr ""
 "Directorul de destinație pentru copiile de rezervă comprimate ale listei de "
 "surse."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -633,14 +651,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -657,7 +675,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr "Înregistrarea timpului"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr "Subiect pentru e-mailurile de notificare banIP."
 
@@ -665,8 +683,8 @@ msgstr "Subiect pentru e-mailurile de notificare banIP."
 msgid "Trigger Delay"
 msgstr "Intârzierea declanșării"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -682,7 +700,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -690,7 +708,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index 43d10f1aa83f30e40e85f148e4cbd47660806316..9d5e080770152b10300e4f8b50ace5c94cfc28e5 100644 (file)
@@ -15,31 +15,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -51,7 +51,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -59,11 +59,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -71,7 +71,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr "Автономные системы"
 
@@ -100,21 +100,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -122,11 +122,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr "Автоопределение"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -142,7 +142,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -150,7 +150,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -165,7 +165,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "Отмена"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -182,7 +182,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr "Страны"
 
@@ -202,11 +202,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr "Не проверять SSL сертификаты сервера во время загрузки."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr "Небезопасная загрузка"
 
@@ -218,15 +218,15 @@ msgstr "Параметры загрузки"
 msgid "Download Utility"
 msgstr "Утилита для загрузки"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr "Профиль электронной почты"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr "Адрес получателя"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr "Адрес отправителя"
 
@@ -234,7 +234,7 @@ msgstr "Адрес отправителя"
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr "Тема"
 
@@ -274,11 +274,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -332,7 +332,7 @@ msgstr "Информация"
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -348,15 +348,15 @@ msgstr "Наименьший приоритет"
 msgid "Less Priority"
 msgstr "Меньший приоритет"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -364,6 +364,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 #, fuzzy
 msgid "List of available network interfaces to trigger the banIP start."
@@ -373,7 +379,7 @@ msgstr "Список доступных сетевых интерфейсов з
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -381,7 +387,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr ""
 
@@ -389,7 +395,7 @@ msgstr ""
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr ""
 
@@ -447,7 +453,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -462,7 +468,7 @@ msgstr ""
 msgid "Overview"
 msgstr "Обзор"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 
@@ -470,11 +476,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -492,11 +498,15 @@ msgstr "Перезапустить"
 msgid "Report Directory"
 msgstr "Папка для отчётов"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr "Перезапустить"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -537,7 +547,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr ""
 
@@ -566,7 +576,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -608,7 +618,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -628,14 +646,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -652,7 +670,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr ""
 
@@ -660,8 +678,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr "Задержка запуска"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -677,7 +695,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -685,7 +703,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index 7c750b76183fbed04e147f7518b3cc4e920df54c..81555a7c171dd809dfde4e4ffac77b1453ee6f74 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr ""
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -149,7 +149,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -164,7 +164,7 @@ msgstr ""
 msgid "Cancel"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -181,7 +181,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr ""
 
@@ -201,11 +201,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr ""
 
@@ -217,15 +217,15 @@ msgstr ""
 msgid "Download Utility"
 msgstr "Nástroj na sťahovanie"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr ""
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr ""
 
@@ -273,11 +273,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr ""
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -347,15 +347,15 @@ msgstr ""
 msgid "Less Priority"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -363,6 +363,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -371,7 +377,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -379,7 +385,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr ""
 
@@ -387,7 +393,7 @@ msgstr ""
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr ""
 
@@ -445,7 +451,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -460,7 +466,7 @@ msgstr ""
 msgid "Overview"
 msgstr "Prehľad"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 
@@ -468,11 +474,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -490,11 +496,15 @@ msgstr ""
 msgid "Report Directory"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -535,7 +545,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr ""
 
@@ -564,7 +574,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -606,7 +616,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -626,14 +644,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -650,7 +668,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr ""
 
@@ -658,8 +676,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -675,7 +693,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -683,7 +701,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index 90d97b1e47abdf545b215895afa603d5a18e6d6f..9d3e44a0752844f95f4b1d4890e4b83187ff00a8 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr "ASN:er"
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr "Automatisk detektering"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -149,7 +149,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -164,7 +164,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "Avbryt"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -181,7 +181,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr ""
 
@@ -201,11 +201,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr "Ladda ner osäkert"
 
@@ -217,15 +217,15 @@ msgstr "Ladda ner parametrar"
 msgid "Download Utility"
 msgstr "Ladda ner verktyget"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr "E-postprofil"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr "Avsändaradress för e-post"
 
@@ -233,7 +233,7 @@ msgstr "Avsändaradress för e-post"
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr "E-postämne"
 
@@ -273,11 +273,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr ""
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -347,15 +347,15 @@ msgstr ""
 msgid "Less Priority"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -363,6 +363,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -371,7 +377,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -379,7 +385,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr ""
 
@@ -387,7 +393,7 @@ msgstr ""
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr ""
 
@@ -445,7 +451,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -460,7 +466,7 @@ msgstr ""
 msgid "Overview"
 msgstr "Överblick"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 
@@ -468,11 +474,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -490,11 +496,15 @@ msgstr "Ladda om"
 msgid "Report Directory"
 msgstr "Rapportkatalog"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr "Starta om"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -535,7 +545,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr ""
 
@@ -564,7 +574,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -606,7 +616,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -626,14 +644,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -650,7 +668,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr ""
 
@@ -658,8 +676,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -675,7 +693,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -683,7 +701,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index ec3b9a15b4026e0ac1b1fa1b436f56d497fe386b..2d1ea3474336850e8149a49a547969fb8849bee3 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr ""
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -149,7 +149,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -164,7 +164,7 @@ msgstr ""
 msgid "Cancel"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -181,7 +181,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr ""
 
@@ -201,11 +201,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr ""
 
@@ -217,15 +217,15 @@ msgstr ""
 msgid "Download Utility"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr ""
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr ""
 
@@ -273,11 +273,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr ""
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -347,15 +347,15 @@ msgstr ""
 msgid "Less Priority"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -363,6 +363,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -371,7 +377,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -379,7 +385,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr ""
 
@@ -387,7 +393,7 @@ msgstr ""
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr ""
 
@@ -445,7 +451,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -460,7 +466,7 @@ msgstr ""
 msgid "Overview"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 
@@ -468,11 +474,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -490,11 +496,15 @@ msgstr ""
 msgid "Report Directory"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -535,7 +545,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr ""
 
@@ -564,7 +574,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -606,7 +616,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -626,14 +644,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -650,7 +668,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr ""
 
@@ -658,8 +676,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -675,7 +693,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -683,7 +701,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index 009800b482eaa831f96fdbfd59da035d79a6cbfc..c69fb645ea84af25c7a8b62010aa2e5d94a41987 100644 (file)
@@ -5,31 +5,31 @@ msgstr "Content-Type: text/plain; charset=UTF-8"
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -41,7 +41,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -49,11 +49,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -61,7 +61,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr ""
 
@@ -90,21 +90,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -112,11 +112,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -132,7 +132,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -140,7 +140,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -155,7 +155,7 @@ msgstr ""
 msgid "Cancel"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -172,7 +172,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr ""
 
@@ -192,11 +192,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr ""
 
@@ -208,15 +208,15 @@ msgstr ""
 msgid "Download Utility"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr ""
 
@@ -224,7 +224,7 @@ msgstr ""
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr ""
 
@@ -264,11 +264,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -322,7 +322,7 @@ msgstr ""
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -338,15 +338,15 @@ msgstr ""
 msgid "Less Priority"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -354,6 +354,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -362,7 +368,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -370,7 +376,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr ""
 
@@ -378,7 +384,7 @@ msgstr ""
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr ""
 
@@ -436,7 +442,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -451,7 +457,7 @@ msgstr ""
 msgid "Overview"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 
@@ -459,11 +465,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -481,11 +487,15 @@ msgstr ""
 msgid "Report Directory"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -526,7 +536,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr ""
 
@@ -555,7 +565,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -597,7 +607,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -617,14 +635,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -641,7 +659,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr ""
 
@@ -649,8 +667,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -666,7 +684,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -674,7 +692,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index b9f1919955d268ed9a0cc92f76576b0afe68693b..525ed1bcf24e2e4623ba24742a7882db68b10b5e 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr "ASN'ler"
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr "Otomatik Algılama"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -149,7 +149,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -164,7 +164,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "İptal"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -181,7 +181,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr "Ülkeler"
 
@@ -201,11 +201,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr "İndirme sırasında SSL sunucu sertifikalarını kontrol etme."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr "Güvensiz İndir"
 
@@ -217,15 +217,15 @@ msgstr "İndirme Parametreleri"
 msgid "Download Utility"
 msgstr "İndirme Aracı"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr "E-Posta Profili"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr "E-Posta Alıcı Adresi"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr "E-Posta Gönderen Adresi"
 
@@ -233,7 +233,7 @@ msgstr "E-Posta Gönderen Adresi"
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr "E-Posta Konusu"
 
@@ -273,11 +273,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr "Bilgi"
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -347,15 +347,15 @@ msgstr "En Az Öncelik"
 msgid "Less Priority"
 msgstr "Daha Az Öncelik"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -363,6 +363,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr "BanIP başlangıcını tetiklemek için mevcut ağ arayüzlerinin listesi."
@@ -371,7 +377,7 @@ msgstr "BanIP başlangıcını tetiklemek için mevcut ağ arayüzlerinin listes
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -379,7 +385,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr "Günlük Sınırı"
 
@@ -387,7 +393,7 @@ msgstr "Günlük Sınırı"
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr "Günlük Şartları"
 
@@ -445,7 +451,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr "Normal Öncelik (varsayılan)"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -460,7 +466,7 @@ msgstr ""
 msgid "Overview"
 msgstr "Genel bakış"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 "Şüpheli olaylar için yalnızca son belirtilen günlük girişi sayısını "
@@ -470,11 +476,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr "BanIP bildirim e-postaları için 'msmtp' tarafından kullanılan profil."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -492,11 +498,15 @@ msgstr "Yeniden yükle"
 msgid "Report Directory"
 msgstr "Rapor Dizini"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr "Yeniden başlat"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -537,7 +547,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr "BanIP bildirim e-postaları için gönderen adresi."
 
@@ -566,7 +576,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -608,7 +618,15 @@ msgstr "IPSet ile ilgili rapor dosyaları için hedef dizin."
 msgid "Target directory for compressed source list backups."
 msgstr "Sıkıştırılmış kaynak listesi yedeklemeleri için hedef dizin."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -628,14 +646,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -652,7 +670,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr "Zaman damgası"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr "BanIP bildirim e-postaları için konu."
 
@@ -660,8 +678,8 @@ msgstr "BanIP bildirim e-postaları için konu."
 msgid "Trigger Delay"
 msgstr "Tetikleme Gecikmesi"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -677,7 +695,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -685,7 +703,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index 487dfdfc00e280461ad21f4fcf0c2578afe4ed8d..fbed634fbd56ef1d1fb41d1574dec951fd160488 100644 (file)
@@ -15,31 +15,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -51,7 +51,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -59,11 +59,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -71,7 +71,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr ""
 
@@ -100,21 +100,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -122,11 +122,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -142,7 +142,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -150,7 +150,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -165,7 +165,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "Скасувати"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -182,7 +182,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr ""
 
@@ -202,11 +202,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr "Не перевіряти SSL-сертифікати сервера під час завантаження."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr "Завантажувати небезпечним шляхом"
 
@@ -218,15 +218,15 @@ msgstr "Параметри завантаження"
 msgid "Download Utility"
 msgstr "Утиліта для завантаження"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr "E-Mail профіль"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr "E-Mail адреса отримувача"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr "E-Mail адреса відправника"
 
@@ -234,7 +234,7 @@ msgstr "E-Mail адреса відправника"
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr "Тема"
 
@@ -274,11 +274,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -332,7 +332,7 @@ msgstr ""
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -348,15 +348,15 @@ msgstr ""
 msgid "Less Priority"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -364,6 +364,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -372,7 +378,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -380,7 +386,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr ""
 
@@ -388,7 +394,7 @@ msgstr ""
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr ""
 
@@ -446,7 +452,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -461,7 +467,7 @@ msgstr ""
 msgid "Overview"
 msgstr "Огляд"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 
@@ -469,11 +475,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -491,11 +497,15 @@ msgstr ""
 msgid "Report Directory"
 msgstr "Тека для звітів"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr "Перезапустити"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -536,7 +546,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr ""
 
@@ -565,7 +575,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -607,7 +617,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -627,14 +645,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -651,7 +669,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr ""
 
@@ -659,8 +677,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr "Затримка запуску"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -676,7 +694,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -684,7 +702,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index 1548622a28d4e5d0a26c2ef80fee892e9c14734e..c48f428d3d069853e19477f3bef1e4d55e8857cb 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr ""
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -149,7 +149,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -164,7 +164,7 @@ msgstr ""
 msgid "Cancel"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -181,7 +181,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr ""
 
@@ -201,11 +201,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr ""
 
@@ -217,15 +217,15 @@ msgstr ""
 msgid "Download Utility"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr ""
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr ""
 
@@ -273,11 +273,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr ""
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -347,15 +347,15 @@ msgstr ""
 msgid "Less Priority"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -363,6 +363,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr ""
@@ -371,7 +377,7 @@ msgstr ""
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -379,7 +385,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr ""
 
@@ -387,7 +393,7 @@ msgstr ""
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr ""
 
@@ -445,7 +451,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -460,7 +466,7 @@ msgstr ""
 msgid "Overview"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr ""
 
@@ -468,11 +474,11 @@ msgstr ""
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -490,11 +496,15 @@ msgstr ""
 msgid "Report Directory"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -535,7 +545,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr ""
 
@@ -564,7 +574,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -606,7 +616,15 @@ msgstr ""
 msgid "Target directory for compressed source list backups."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -626,14 +644,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -650,7 +668,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr ""
 
@@ -658,8 +676,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr "Kích hoạt độ trễ"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -676,7 +694,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -684,7 +702,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index b7f17ae7fbe14a0226dde0db4b0e56a79522ae36..95b17da007238a174328a6c95af83472d84e480b 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr "平均取样数"
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr "自动检测"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -149,7 +149,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -164,7 +164,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "取消"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -181,7 +181,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr "地区"
 
@@ -201,11 +201,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr "下载期间不检查 SSL 服务器证书。"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr "下载不安全"
 
@@ -217,15 +217,15 @@ msgstr "下载参数"
 msgid "Download Utility"
 msgstr "下载工具"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr "电子邮件概要"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr "电子邮件收件人地址"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr "电子邮件发件人地址"
 
@@ -233,7 +233,7 @@ msgstr "电子邮件发件人地址"
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr "电子邮件主题"
 
@@ -273,11 +273,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr "信息"
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -347,15 +347,15 @@ msgstr "最低优先级"
 msgid "Less Priority"
 msgstr "较低优先级"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -363,6 +363,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr "触发 banIP 启动的可用网络接口列表。"
@@ -371,7 +377,7 @@ msgstr "触发 banIP 启动的可用网络接口列表。"
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -379,7 +385,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr "日志限制"
 
@@ -387,7 +393,7 @@ msgstr "日志限制"
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr "日志项"
 
@@ -445,7 +451,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr "正常优先级(默认)"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -460,7 +466,7 @@ msgstr ""
 msgid "Overview"
 msgstr "概览"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr "仅解析最后声明的可疑事件的日志条目数量。"
 
@@ -468,11 +474,11 @@ msgstr "仅解析最后声明的可疑事件的日志条目数量。"
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr "“msmtp”所用的 banIP 电子邮件通知配置。"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -490,11 +496,15 @@ msgstr "重新载入"
 msgid "Report Directory"
 msgstr "报告目录"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr "重启"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -535,7 +545,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr "banIP 通知邮件的发送地址。"
 
@@ -564,7 +574,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -606,7 +616,15 @@ msgstr "IPSet 相关的报告文件的目标目录。"
 msgid "Target directory for compressed source list backups."
 msgstr "压缩的源列表备份的目标目录。"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -626,14 +644,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -650,7 +668,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr "时间戳"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr "banIP 通知邮件的主题。"
 
@@ -658,8 +676,8 @@ msgstr "banIP 通知邮件的主题。"
 msgid "Trigger Delay"
 msgstr "触发延时"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -675,7 +693,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -683,7 +701,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index 00b2b46e27d33958cd201256a36c7fe34a6cd8bd..9ca8b32f96cfedcc8f0b0009040c2416455317c8 100644 (file)
@@ -14,31 +14,31 @@ msgstr ""
 msgid "-- Set Selection --"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381
 msgid "-100"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:378
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382
 msgid "-200 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
 msgid "-300"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
 msgid "-400"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
 msgid "0"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435
 msgid "100 (default)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
 msgid "1000"
 msgstr ""
 
@@ -50,7 +50,7 @@ msgstr ""
 msgid "2048"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436
 msgid "250"
 msgstr ""
 
@@ -58,11 +58,11 @@ msgstr ""
 msgid "4096"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
 msgid "50"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
 msgid "500"
 msgstr ""
 
@@ -70,7 +70,7 @@ msgstr ""
 msgid "512"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513
 msgid "ASNs"
 msgstr "平均取樣數"
 
@@ -99,21 +99,21 @@ msgstr ""
 msgid "Advanced Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Allowlist Only"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:18
 msgid ""
 "Allowlist modifications have been saved, restart banIP that changes take "
 "effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Auto Allowlist"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Auto Blocklist"
 msgstr ""
 
@@ -121,11 +121,11 @@ msgstr ""
 msgid "Auto Detection"
 msgstr "自動偵測"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
 msgid "Automatically transfers suspicious IPs to the banIP blocklist."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:514
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518
 msgid "Automatically transfers uplink IPs to the banIP allowlist."
 msgstr ""
 
@@ -141,7 +141,7 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Blocklist Expiry"
 msgstr ""
 
@@ -149,7 +149,7 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:18
 msgid ""
 "Blocklist modifications have been saved, restart banIP that changes take "
 "effect."
@@ -164,7 +164,7 @@ msgstr ""
 msgid "Cancel"
 msgstr "取消"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid "Chain Priority"
 msgstr ""
 
@@ -181,7 +181,7 @@ msgid ""
 "documentation</a>"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503
 msgid "Countries"
 msgstr "地區"
 
@@ -201,11 +201,11 @@ msgid ""
 "utilities automatically."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Don't check SSL server certificates during download."
 msgstr "下載期間不檢查 SSL 伺服器證書。"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
 msgid "Download Insecure"
 msgstr "下載不安全"
 
@@ -217,15 +217,15 @@ msgstr "下載參數"
 msgid "Download Utility"
 msgstr "下載工具"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "E-Mail Profile"
 msgstr "電郵設定檔"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid "E-Mail Receiver Address"
 msgstr "電郵收件人位址"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "E-Mail Sender Address"
 msgstr "電郵寄件人位址"
 
@@ -233,7 +233,7 @@ msgstr "電郵寄件人位址"
 msgid "E-Mail Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "E-Mail Topic"
 msgstr "電郵主旨"
 
@@ -273,11 +273,11 @@ msgstr ""
 msgid "Enables IPv6 support."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486
 msgid "Feed Selection"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr "資訊"
 msgid "LAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "LAN-Forward Chain"
 msgstr ""
 
@@ -347,15 +347,15 @@ msgstr "最低優先順序"
 msgid "Less Priority"
 msgstr "較低優先順序"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408
 msgid "Limit certain feeds to the LAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "Limit certain feeds to the WAN-Forward chain."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "Limit certain feeds to the WAN-Input chain."
 msgstr ""
 
@@ -363,6 +363,12 @@ msgstr ""
 msgid "Limit the cpu cores used by banIP to save RAM."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid ""
+"List Set elements in the report, disable this to speed up the report "
+"significantly."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
 msgid "List of available network interfaces to trigger the banIP start."
 msgstr "觸發 banIP 啟動的可用網路介面列表。"
@@ -371,7 +377,7 @@ msgstr "觸發 banIP 啟動的可用網路介面列表。"
 msgid "List the elements of a specific banIP-related Set."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid "Log Count"
 msgstr ""
 
@@ -379,7 +385,7 @@ msgstr ""
 msgid "Log LAN-Forward"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Log Limit"
 msgstr "日誌限制"
 
@@ -387,7 +393,7 @@ msgstr "日誌限制"
 msgid "Log Settings"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid "Log Terms"
 msgstr "日誌項目"
 
@@ -445,7 +451,7 @@ msgstr ""
 msgid "Normal Priority (default)"
 msgstr "正常優先順序 (預設)"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
 msgid ""
 "Number of failed login attempts of the same IP in the log before blocking."
 msgstr ""
@@ -460,7 +466,7 @@ msgstr ""
 msgid "Overview"
 msgstr "概覽"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433
 msgid "Parse only the last stated number of log entries for suspicious events."
 msgstr "僅解析最後宣告的可疑事件的日誌項目數量。"
 
@@ -468,11 +474,11 @@ msgstr "僅解析最後宣告的可疑事件的日誌項目數量。"
 msgid "Processing Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr "「msmtp」所用的 banIP 電子郵件通知設定。"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
 msgid ""
 "Receiver address for banIP notification E-Mails, this information is "
 "required to enable E-Mail functionality."
@@ -490,11 +496,15 @@ msgstr "重新載入"
 msgid "Report Directory"
 msgstr "報告目錄"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
+msgid "Report Elements"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207
 msgid "Restart"
 msgstr "重新啟動"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526
 msgid "Restrict the internet access from/to a small number of secure IPs."
 msgstr ""
 
@@ -535,7 +545,7 @@ msgstr ""
 msgid "Select the logical WAN IPv6 network interface(s)."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
 msgid "Sender address for banIP notification E-Mails."
 msgstr "banIP 通知郵件的傳送位址。"
 
@@ -564,7 +574,7 @@ msgstr ""
 msgid "Set details"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
 msgid ""
 "Set the nft chain priority within the banIP table. Please note: lower values "
 "means higher priority."
@@ -606,7 +616,15 @@ msgstr "IPSet 相關的報告檔案的目的目錄。"
 msgid "Target directory for compressed source list backups."
 msgstr "壓縮的來源列表備份的目的目錄。"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
+msgid "The allowlist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:25
+msgid "The blocklist is too big, unable to save modifications."
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
 msgid ""
 "The default log terms / regular expressions are filtering suspicious ssh, "
 "LuCI, nginx and asterisk traffic."
@@ -626,14 +644,14 @@ msgid ""
 "The syslog output, prefiltered for banIP-related processing log entries only."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:29
 msgid ""
 "This is the local banIP allowlist that will permit certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:29
 msgid ""
 "This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
 "addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
@@ -650,7 +668,7 @@ msgstr ""
 msgid "Timestamp"
 msgstr "時間戳"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466
 msgid "Topic for banIP notification E-Mails."
 msgstr "banIP 通知郵件的主題。"
 
@@ -658,8 +676,8 @@ msgstr "banIP 通知郵件的主題。"
 msgid "Trigger Delay"
 msgstr "觸發延遲"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:17
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:20
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:20
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -675,7 +693,7 @@ msgstr ""
 msgid "WAN-Forward (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:396
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400
 msgid "WAN-Forward Chain"
 msgstr ""
 
@@ -683,7 +701,7 @@ msgstr ""
 msgid "WAN-Input (packets)"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
 msgid "WAN-Input Chain"
 msgstr ""
 
index 2a471c9dfc99f38105aac8d764b1c16e14f57459..41f4f423725d70293cd77f27363851a16018e869 100644 (file)
@@ -46,7 +46,7 @@
                                "/usr/sbin/logread -e  banIP/": [
                                        "exec"
                                ],
-                               "/usr/sbin/nft -tj list table inet banIP": [
+                               "/usr/sbin/nft -tj list ruleset": [
                                        "exec"
                                ],
                                "/etc/init.d/banip stop": [