luci-app-banip: fix local blocklist access
authorDirk Brenken <dev@brenken.org>
Tue, 7 Mar 2023 10:16:56 +0000 (11:16 +0100)
committerDirk Brenken <dev@brenken.org>
Tue, 7 Mar 2023 10:16:56 +0000 (11:16 +0100)
* accidently commit the old local blacklist js with the former PR - fixed now.
* sync translations

Signed-off-by: Dirk Brenken <dev@brenken.org>
38 files changed:
applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js [deleted file]
applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js [new file with mode: 0644]
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

diff --git a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js
deleted file mode 100644 (file)
index f172158..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-'use strict';
-'require view';
-'require fs';
-'require ui';
-
-return view.extend({
-       load: function() {
-               return L.resolveDefault(fs.read_direct('/etc/banip/banip.blacklist'), '');
-       },
-       handleSave: function(ev) {
-               var value = ((document.querySelector('textarea').value || '').trim().toLowerCase().replace(/\r\n/g, '\n')) + '\n';
-               return fs.write('/etc/banip/banip.blacklist', value)
-                       .then(function(rc) {
-                               document.querySelector('textarea').value = value;
-                               ui.addNotification(null, E('p', _('Blacklist changes have been saved. Refresh your banIP lists that changes take effect.')), 'info');
-                       }).catch(function(e) {
-                               ui.addNotification(null, E('p', _('Unable to save changes: %s').format(e.message)));
-                       });
-       },
-       render: function(blacklist) {
-               return E([
-                       E('p', {},
-                               _('This is the local banIP blacklist to always-deny certain IP/CIDR addresses.<br /> \
-                               <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address or domain name per line. Comments introduced with \'#\' are allowed - wildcards and regex are not.')),
-                       E('p', {},
-                               E('textarea', {
-                                       'style': 'width: 100% !important; padding: 5px; font-family: monospace',
-                                       'spellcheck': 'false',
-                                       'wrap': 'off',
-                                       'rows': 25
-                               }, [ blacklist != null ? blacklist : '' ])
-                       )
-               ]);
-       },
-       handleSaveApply: null,
-       handleReset: null
-});
diff --git a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js
new file mode 100644 (file)
index 0000000..888a189
--- /dev/null
@@ -0,0 +1,37 @@
+'use strict';
+'require view';
+'require fs';
+'require ui';
+
+return view.extend({
+       load: function () {
+               return 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';
+               return fs.write('/etc/banip/banip.blocklist', value)
+                       .then(function (rc) {
+                               document.querySelector('textarea').value = value;
+                               ui.addNotification(null, E('p', _('Blocklist modifications have been saved, restart banIP that changes take effect.')), 'info');
+                       }).catch(function (e) {
+                               ui.addNotification(null, E('p', _('Unable to save modifications: %s').format(e.message)));
+                       });
+       },
+       render: function (blocklist) {
+               return E([
+                       E('p', {},
+                               _('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/IPv6 address or domain name per line.')),
+                       E('p', {},
+                               E('textarea', {
+                                       'style': 'width: 100% !important; padding: 5px; font-family: monospace',
+                                       'spellcheck': 'false',
+                                       'wrap': 'off',
+                                       'rows': 25
+                               }, [blocklist != null ? blocklist : ''])
+                       )
+               ]);
+       },
+       handleSaveApply: null,
+       handleReset: null
+});
index 08ed101809edfde57a8a79af5df415805fb1fcac..ed20d28916101c558fc6a08ca99bacdf13dadb85 100644 (file)
@@ -142,12 +142,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -156,6 +150,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -634,12 +634,11 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
@@ -660,11 +659,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr "تأخير الزناد"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-msgstr "تعذر حفظ التغييرات: s%"
-
 #: 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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -704,6 +700,9 @@ msgstr ""
 msgid "banIP"
 msgstr ""
 
+#~ msgid "Unable to save changes: %s"
+#~ msgstr "تعذر حفظ التغييرات: s%"
+
 #~ msgid "Download Queue"
 #~ msgstr "تنزيل قائمة الانتظار"
 
index 2d6ebeaa4a3387e82be94f71090e092dfde36723..e9608e8dcb528f336104a46aeb56523690d3a1db 100644 (file)
@@ -141,12 +141,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -155,6 +149,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -633,12 +633,11 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
@@ -659,11 +658,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
index c55dd5d6dfea0fbd23253be4c6fc49e10a003d78..f8d03bd74af7570cd3bef6e89155d912d5a0671c 100644 (file)
@@ -141,12 +141,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -155,6 +149,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -633,12 +633,11 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
@@ -659,11 +658,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
index 688a1056e3af2ca8ab79f2b45dc9d10b8249de17..5aec859af09fbef54e3464bac96a7bcf3d0ca371 100644 (file)
@@ -141,12 +141,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -155,6 +149,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -633,12 +633,11 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
@@ -659,11 +658,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
index 62f0238f73f31fa1eb309a132c8ac20840b40336..2e3434c23841b78b7cbde63579cf0ff192320416 100644 (file)
@@ -141,12 +141,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -155,6 +149,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -633,12 +633,11 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
@@ -659,11 +658,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr "Prodleva spuštění"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
index c9b6e14abaf4d20b8349bf1db46f1f1a451e854d..7c0c395b2f4141f3a8868d36b7637f98461c528a 100644 (file)
@@ -141,14 +141,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-"Ændringerne på sortlisten er blevet gemt. Opdater dine banIP-lister, så "
-"ændringerne træder i kraft."
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -157,6 +149,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -637,17 +635,12 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
-"Dette er den lokale banIP-blacklist, der altid afviser visse IP/CIDR-"
-"adresser.<br /> <em><b>Bemærk:</b></em> tilføjer kun én IPv4-adresse, IPv6-"
-"adresse eller domænenavn pr. linje. Kommentarer, der indledes med \"#\", er "
-"tilladt - wildcards og regex er ikke tilladt."
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
 msgid ""
@@ -667,11 +660,8 @@ msgstr "Emne for banIP-meddelelses-e-mails."
 msgid "Trigger Delay"
 msgstr "Udløserforsinkelse"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-msgstr "Kunne ikke gemme ændringer: %s"
-
 #: 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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -711,6 +701,27 @@ msgstr ""
 msgid "banIP"
 msgstr "banIP"
 
+#~ msgid ""
+#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
+#~ "take effect."
+#~ msgstr ""
+#~ "Ændringerne på sortlisten er blevet gemt. Opdater dine banIP-lister, så "
+#~ "ændringerne træder i kraft."
+
+#~ msgid ""
+#~ "This is the local banIP blacklist to always-deny certain IP/CIDR "
+#~ "addresses.<br /> <em><b>Please note:</b></em> add only one IPv4 address, "
+#~ "IPv6 address or domain name per line. Comments introduced with '#' are "
+#~ "allowed - wildcards and regex are not."
+#~ msgstr ""
+#~ "Dette er den lokale banIP-blacklist, der altid afviser visse IP/CIDR-"
+#~ "adresser.<br /> <em><b>Bemærk:</b></em> tilføjer kun én IPv4-adresse, "
+#~ "IPv6-adresse eller domænenavn pr. linje. Kommentarer, der indledes med "
+#~ "\"#\", er tilladt - wildcards og regex er ikke tilladt."
+
+#~ msgid "Unable to save changes: %s"
+#~ msgstr "Kunne ikke gemme ændringer: %s"
+
 #~ msgid "-m limit --limit 2/sec (default)"
 #~ msgstr "-m grænse --limit 2/sek (standard)"
 
index 99d12cc36b01a25e26078f2328571a0b9af026a4..b4a918ad504eac004530af18eb34963f63e29b41 100644 (file)
@@ -141,14 +141,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-"Blacklist Änderungen wurden gespeichert. banIP Liste aktualisieren um "
-"Änderungen anzuwenden."
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -157,6 +149,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -639,18 +637,12 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
-"Dies ist die lokale banIP-Sperrliste, um bestimmte IP/CIDR-Adressen immer "
-"abzulehnen.<br /> <em><b>Bitte beachten Sie:</b></em> fügen Sie nur eine "
-"IPv4-Adresse, IPv6-Adresse oder einen Domainnamen pro Zeile hinzu. "
-"Kommentare, die mit '#' eingeleitet werden, sind erlaubt - Wildcards und "
-"Regex sind nicht erlaubt."
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
 msgid ""
@@ -670,11 +662,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/blacklist.js:17
-msgid "Unable to save changes: %s"
-msgstr "Konnte Änderungen nicht speichern: %s"
-
 #: 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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -714,6 +703,28 @@ msgstr ""
 msgid "banIP"
 msgstr "banIP"
 
+#~ msgid ""
+#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
+#~ "take effect."
+#~ msgstr ""
+#~ "Blacklist Änderungen wurden gespeichert. banIP Liste aktualisieren um "
+#~ "Änderungen anzuwenden."
+
+#~ msgid ""
+#~ "This is the local banIP blacklist to always-deny certain IP/CIDR "
+#~ "addresses.<br /> <em><b>Please note:</b></em> add only one IPv4 address, "
+#~ "IPv6 address or domain name per line. Comments introduced with '#' are "
+#~ "allowed - wildcards and regex are not."
+#~ msgstr ""
+#~ "Dies ist die lokale banIP-Sperrliste, um bestimmte IP/CIDR-Adressen immer "
+#~ "abzulehnen.<br /> <em><b>Bitte beachten Sie:</b></em> fügen Sie nur eine "
+#~ "IPv4-Adresse, IPv6-Adresse oder einen Domainnamen pro Zeile hinzu. "
+#~ "Kommentare, die mit '#' eingeleitet werden, sind erlaubt - Wildcards und "
+#~ "Regex sind nicht erlaubt."
+
+#~ msgid "Unable to save changes: %s"
+#~ msgstr "Konnte Änderungen nicht speichern: %s"
+
 #~ msgid "-m limit --limit 2/sec (default)"
 #~ msgstr "-m limit --limit 2/sec (Standart)"
 
index a62897b82bee2fa3cac76aded8c7b87db71aaea3..c8a95ce1d17a858e1c36f62648aa3c37593f4c51 100644 (file)
@@ -141,12 +141,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -155,6 +149,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -633,12 +633,11 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
@@ -659,11 +658,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
index 3dda4f8b71e0ab32e3a348e2b708a1529f01b048..15b778dd7432cfb312b06aa922b7b814268e3e53 100644 (file)
@@ -141,12 +141,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -155,6 +149,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -633,12 +633,11 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
@@ -659,11 +658,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
index 569b43006a91acadac25bf9c47176fc2bbe86668..268a2779966a13d6c029f80c2175b4edae490530 100644 (file)
@@ -144,14 +144,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-"Se han guardado los cambios de la lista negra. Actualice sus listas de banIP "
-"para que los cambios surtan efecto."
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -160,6 +152,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -647,18 +645,12 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
-"Esta es la lista negra local de banIP para denegar siempre ciertas "
-"direcciones IP/CIDR. <br /> <em> <b>Tenga en cuenta:</b> </em> agregue solo "
-"una dirección IPv4, una dirección IPv6 o un nombre de dominio por línea . "
-"Los comentarios introducidos con '#' están permitidos; los comodines y las "
-"expresiones regulares no."
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
 msgid ""
@@ -678,11 +670,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/blacklist.js:17
-msgid "Unable to save changes: %s"
-msgstr "No se pudo guardar los cambios: %s"
-
 #: 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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -722,6 +711,28 @@ msgstr ""
 msgid "banIP"
 msgstr "banIP"
 
+#~ msgid ""
+#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
+#~ "take effect."
+#~ msgstr ""
+#~ "Se han guardado los cambios de la lista negra. Actualice sus listas de "
+#~ "banIP para que los cambios surtan efecto."
+
+#~ msgid ""
+#~ "This is the local banIP blacklist to always-deny certain IP/CIDR "
+#~ "addresses.<br /> <em><b>Please note:</b></em> add only one IPv4 address, "
+#~ "IPv6 address or domain name per line. Comments introduced with '#' are "
+#~ "allowed - wildcards and regex are not."
+#~ msgstr ""
+#~ "Esta es la lista negra local de banIP para denegar siempre ciertas "
+#~ "direcciones IP/CIDR. <br /> <em> <b>Tenga en cuenta:</b> </em> agregue "
+#~ "solo una dirección IPv4, una dirección IPv6 o un nombre de dominio por "
+#~ "línea . Los comentarios introducidos con '#' están permitidos; los "
+#~ "comodines y las expresiones regulares no."
+
+#~ msgid "Unable to save changes: %s"
+#~ msgstr "No se pudo guardar los cambios: %s"
+
 #~ msgid "-m limit --limit 2/sec (default)"
 #~ msgstr "-m limit --limit 2/sec (predeterminado)"
 
index 5e2268eff5a941492fdc3ee69a92c79c5c698081..8c177c6dadb964a9beb1d66366ba9caf04bd44aa 100644 (file)
@@ -141,12 +141,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -155,6 +149,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -633,12 +633,11 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
@@ -659,11 +658,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-msgstr "Muutoksia ei voitu tallentaa: %s"
-
 #: 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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -703,6 +699,9 @@ msgstr ""
 msgid "banIP"
 msgstr ""
 
+#~ msgid "Unable to save changes: %s"
+#~ msgstr "Muutoksia ei voitu tallentaa: %s"
+
 #~ msgid "-m limit --limit 2/sec (default)"
 #~ msgstr "-m limit --limit 2/sec (oletus)"
 
index 0258bb9c19827a3affdce21af298d9cc9928ff83..d7392565cb9b198c635d7a9383e08d67c32048c9 100644 (file)
@@ -141,14 +141,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-"Les modifications de la liste noire ont été enregistrées. Rafraîchissez vos "
-"listes de bannissement pour que les changements prennent effet."
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -157,6 +149,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -644,18 +642,12 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
-"Il s'agit de la liste noire locale de banIP pour toujours refuser certaines "
-"adresses IP/CIDR.<br /> <em><b>Veuillez noter :</b></em> n'ajouter qu'une "
-"seule adresse IPv4, adresse IPv6 ou nom de domaine par ligne. Les "
-"commentaires introduits par '#' sont autorisés - les caractères de "
-"remplacement et les regex ne le sont pas."
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
 msgid ""
@@ -675,11 +667,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/blacklist.js:17
-msgid "Unable to save changes: %s"
-msgstr "Impossible de sauvegarder les modifications : %s"
-
 #: 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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -719,6 +708,28 @@ msgstr ""
 msgid "banIP"
 msgstr "bannissement IP"
 
+#~ msgid ""
+#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
+#~ "take effect."
+#~ msgstr ""
+#~ "Les modifications de la liste noire ont été enregistrées. Rafraîchissez "
+#~ "vos listes de bannissement pour que les changements prennent effet."
+
+#~ msgid ""
+#~ "This is the local banIP blacklist to always-deny certain IP/CIDR "
+#~ "addresses.<br /> <em><b>Please note:</b></em> add only one IPv4 address, "
+#~ "IPv6 address or domain name per line. Comments introduced with '#' are "
+#~ "allowed - wildcards and regex are not."
+#~ msgstr ""
+#~ "Il s'agit de la liste noire locale de banIP pour toujours refuser "
+#~ "certaines adresses IP/CIDR.<br /> <em><b>Veuillez noter :</b></em> "
+#~ "n'ajouter qu'une seule adresse IPv4, adresse IPv6 ou nom de domaine par "
+#~ "ligne. Les commentaires introduits par '#' sont autorisés - les "
+#~ "caractères de remplacement et les regex ne le sont pas."
+
+#~ msgid "Unable to save changes: %s"
+#~ msgstr "Impossible de sauvegarder les modifications : %s"
+
 #~ msgid "-m limit --limit 2/sec (default)"
 #~ msgstr "-m limit --limit 2/sec (défaut)"
 
index 2b4cc5d26a6b9b15deae73958dabf70d0cb55d52..b92dbd02bf72347dc750da9bc2b7d7aa98088cca 100644 (file)
@@ -142,12 +142,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -156,6 +150,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -634,12 +634,11 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
@@ -660,11 +659,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
index f7fcfbaf06fc3c9cf10178e26fcb5914290e7b01..fe146b0d7bdbd0cc2422e56471c8d8b7c612c8b7 100644 (file)
@@ -135,12 +135,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -149,6 +143,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -627,12 +627,11 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
@@ -653,11 +652,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
index 82aadaa7171d239fcd059d6d8b81c2d394bbd087..2ebd39db775fd4a78f498a03dc15c41c3ff6852a 100644 (file)
@@ -141,14 +141,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-"Feketelista beállítások elmentve. Frissítse a banIP listákat a változtatások "
-"érvényre juttatásához."
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -157,6 +149,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -636,12 +634,11 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
@@ -662,12 +659,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr "Aktiváló késleltetése"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-#, fuzzy
-msgid "Unable to save changes: %s"
-msgstr "Nem sikerült a/az %s változtatás menté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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -707,6 +700,17 @@ msgstr ""
 msgid "banIP"
 msgstr "banIP"
 
+#~ msgid ""
+#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
+#~ "take effect."
+#~ msgstr ""
+#~ "Feketelista beállítások elmentve. Frissítse a banIP listákat a "
+#~ "változtatások érvényre juttatásához."
+
+#, fuzzy
+#~ msgid "Unable to save changes: %s"
+#~ msgstr "Nem sikerült a/az %s változtatás mentése"
+
 #~ msgid "1 hour"
 #~ msgstr "1 óra"
 
index 3dfc3c1fd3185b821344813aceaf4125796cc96d..eacdc18469b906bdbd54bce9850304f8b91982b3 100644 (file)
@@ -141,12 +141,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -155,6 +149,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -633,12 +633,11 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
@@ -659,11 +658,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-msgstr "Impossibile salvare le modifiche: %s"
-
 #: 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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -703,6 +699,9 @@ msgstr ""
 msgid "banIP"
 msgstr ""
 
+#~ msgid "Unable to save changes: %s"
+#~ msgstr "Impossibile salvare le modifiche: %s"
+
 #~ msgid "-m limit --limit 2/sec (default)"
 #~ msgstr "-m limit --limit 2/sec (predefinito)"
 
index 4ee247a14759bb33a278c4aace640e8750019cd2..617c67c1f59866639a7125d9f088233246834ab0 100644 (file)
@@ -141,12 +141,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -155,6 +149,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -633,12 +633,11 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
@@ -659,11 +658,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr "トリガ遅延"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-msgstr "変更を保存できませんでした: %s"
-
 #: 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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -703,6 +699,9 @@ msgstr ""
 msgid "banIP"
 msgstr ""
 
+#~ msgid "Unable to save changes: %s"
+#~ msgstr "変更を保存できませんでした: %s"
+
 #~ msgid "Action"
 #~ msgstr "アクション"
 
index 21e18dfa6817119f6705dfbf64331fe768a04078..eebb9465645b961d09fc2653690cc27b50765939 100644 (file)
@@ -142,12 +142,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -156,6 +150,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -634,12 +634,11 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
@@ -660,11 +659,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
index 43143213a81dd29119c527e5b75fe813c55ca856..3285a07f157feab32c09ac835dc4268baaa068c8 100644 (file)
@@ -141,12 +141,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -155,6 +149,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -633,12 +633,11 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
@@ -659,11 +658,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
index aa2d534c874b5bd1bc1e53d0ef7240f411c7df62..3b156673c5a9fb518639efea93d4a1285e8c1309 100644 (file)
@@ -141,12 +141,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -155,6 +149,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -633,12 +633,11 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
@@ -659,11 +658,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
index 4dc96aa82176a6f7bde9d56d4d04be8fa690df3c..79363ca165cd75c424e390d73abeb9b4098fe5a0 100644 (file)
@@ -141,12 +141,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -155,6 +149,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -634,12 +634,11 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
@@ -660,11 +659,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr "Utløserforsinkelse"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-msgstr "Kunne ikke lagre endringer: %s"
-
 #: 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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -704,6 +700,9 @@ msgstr ""
 msgid "banIP"
 msgstr ""
 
+#~ msgid "Unable to save changes: %s"
+#~ msgstr "Kunne ikke lagre endringer: %s"
+
 #~ msgid "Active Sources"
 #~ msgstr "Aktive kilder"
 
index 68424f23068e3b4f27c4bc9d6c668a1c7d065e3d..add39da26d74178656f2648811b6914710b4226e 100644 (file)
@@ -141,14 +141,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-"Zwarte lijst aanpassing is bewaard. Herlaad je banIP lijst om de aanpassing "
-"te activeren."
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -157,6 +149,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -640,12 +638,11 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
@@ -666,11 +663,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -710,6 +704,13 @@ msgstr ""
 msgid "banIP"
 msgstr ""
 
+#~ msgid ""
+#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
+#~ "take effect."
+#~ msgstr ""
+#~ "Zwarte lijst aanpassing is bewaard. Herlaad je banIP lijst om de "
+#~ "aanpassing te activeren."
+
 #~ msgid "-m limit --limit 2/sec (default)"
 #~ msgstr "-m-limiet --limiet 2/sec (standaard)"
 
index d364cd6d0cd0050c0286b41a4cdd9ac837b3aca9..cb533d91e2c5f43b09b3184851676c69d6b0f6f6 100644 (file)
@@ -142,14 +142,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-"Zmiany na czarnej liście zostały zapisane. Odśwież swoje listy banIP, aby "
-"zmiany zaczęły obowiązywać."
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -158,6 +150,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -640,17 +638,12 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
-"Jest to lokalna czarna lista banIP, aby zawsze odmawiać dostępu dla "
-"niektórych adresów IP/CIDR. <br /> <em><b>Uwaga:</b></em> dodaj tylko jeden "
-"adres IPv4, adres IPv6 lub nazwę domeny na wiersz. Komentarze wprowadzone z "
-"\"#\" są dozwolone - symbole wieloznaczne i wyrażenia regularnego nie są."
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
 msgid ""
@@ -670,11 +663,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/blacklist.js:17
-msgid "Unable to save changes: %s"
-msgstr "Nie można zapisać zmian: %s"
-
 #: 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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -714,6 +704,28 @@ msgstr ""
 msgid "banIP"
 msgstr "banIP"
 
+#~ msgid ""
+#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
+#~ "take effect."
+#~ msgstr ""
+#~ "Zmiany na czarnej liście zostały zapisane. Odśwież swoje listy banIP, aby "
+#~ "zmiany zaczęły obowiązywać."
+
+#~ msgid ""
+#~ "This is the local banIP blacklist to always-deny certain IP/CIDR "
+#~ "addresses.<br /> <em><b>Please note:</b></em> add only one IPv4 address, "
+#~ "IPv6 address or domain name per line. Comments introduced with '#' are "
+#~ "allowed - wildcards and regex are not."
+#~ msgstr ""
+#~ "Jest to lokalna czarna lista banIP, aby zawsze odmawiać dostępu dla "
+#~ "niektórych adresów IP/CIDR. <br /> <em><b>Uwaga:</b></em> dodaj tylko "
+#~ "jeden adres IPv4, adres IPv6 lub nazwę domeny na wiersz. Komentarze "
+#~ "wprowadzone z \"#\" są dozwolone - symbole wieloznaczne i wyrażenia "
+#~ "regularnego nie są."
+
+#~ msgid "Unable to save changes: %s"
+#~ msgstr "Nie można zapisać zmian: %s"
+
 #~ msgid "-m limit --limit 2/sec (default)"
 #~ msgstr "-m limit --limit 2/sec (domyślnie)"
 
index afa7ab6574cf5e324c2b71f195cae5acc54b064b..712e1c78a17a780c71ed74f007d9d4d512893a37 100644 (file)
@@ -141,14 +141,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-"As alterações da Lista Negra foram salvas. Atualize a sua lista BanIP para "
-"que as alterações surtam efeito."
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -157,6 +149,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -639,17 +637,12 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
-"Esta é a lista negra local do banIP para sempre negar determinados endereços "
-"IP/CIDR. <br /> <em> <b> Observação: </b> </em> adicione apenas um endereço "
-"IPv4, um endereço IPv6 ou um nome de domínio por linha . Comentários "
-"iniciados com '#' são permitidos - curingas e regex não."
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
 msgid ""
@@ -669,11 +662,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/blacklist.js:17
-msgid "Unable to save changes: %s"
-msgstr "Impossível gravar as modificações: %s"
-
 #: 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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -713,6 +703,27 @@ msgstr ""
 msgid "banIP"
 msgstr "banIP"
 
+#~ msgid ""
+#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
+#~ "take effect."
+#~ msgstr ""
+#~ "As alterações da Lista Negra foram salvas. Atualize a sua lista BanIP "
+#~ "para que as alterações surtam efeito."
+
+#~ msgid ""
+#~ "This is the local banIP blacklist to always-deny certain IP/CIDR "
+#~ "addresses.<br /> <em><b>Please note:</b></em> add only one IPv4 address, "
+#~ "IPv6 address or domain name per line. Comments introduced with '#' are "
+#~ "allowed - wildcards and regex are not."
+#~ msgstr ""
+#~ "Esta é a lista negra local do banIP para sempre negar determinados "
+#~ "endereços IP/CIDR. <br /> <em> <b> Observação: </b> </em> adicione apenas "
+#~ "um endereço IPv4, um endereço IPv6 ou um nome de domínio por linha . "
+#~ "Comentários iniciados com '#' são permitidos - curingas e regex não."
+
+#~ msgid "Unable to save changes: %s"
+#~ msgstr "Impossível gravar as modificações: %s"
+
 #~ msgid "-m limit --limit 2/sec (default)"
 #~ msgstr "-m limit --limit 2/seg (predefinição)"
 
index 4a6ddf97049a79c0d12cec9655a8d7ea8c2532af..cf333e21182c311ca2d79e4519898a054d6a1fb6 100644 (file)
@@ -141,14 +141,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-"As alterações da Lista Negra foram salvas. Atualize a sua lista BanIP para "
-"que as alterações surtam efeito."
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -157,6 +149,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -639,17 +637,12 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
-"Esta é a lista negra local do banIP para sempre negar determinados endereços "
-"IP/CIDR. <br /> <em> <b> Observação: </b> </em> adicione apenas um endereço "
-"IPv4, um endereço IPv6 ou um nome de domínio por linha . Comentários "
-"iniciados com '#' são permitidos - curingas e regex não."
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
 msgid ""
@@ -669,11 +662,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/blacklist.js:17
-msgid "Unable to save changes: %s"
-msgstr "Impossível salvar as modificações: %s"
-
 #: 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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -713,6 +703,27 @@ msgstr ""
 msgid "banIP"
 msgstr "Banir IP"
 
+#~ msgid ""
+#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
+#~ "take effect."
+#~ msgstr ""
+#~ "As alterações da Lista Negra foram salvas. Atualize a sua lista BanIP "
+#~ "para que as alterações surtam efeito."
+
+#~ msgid ""
+#~ "This is the local banIP blacklist to always-deny certain IP/CIDR "
+#~ "addresses.<br /> <em><b>Please note:</b></em> add only one IPv4 address, "
+#~ "IPv6 address or domain name per line. Comments introduced with '#' are "
+#~ "allowed - wildcards and regex are not."
+#~ msgstr ""
+#~ "Esta é a lista negra local do banIP para sempre negar determinados "
+#~ "endereços IP/CIDR. <br /> <em> <b> Observação: </b> </em> adicione apenas "
+#~ "um endereço IPv4, um endereço IPv6 ou um nome de domínio por linha . "
+#~ "Comentários iniciados com '#' são permitidos - curingas e regex não."
+
+#~ msgid "Unable to save changes: %s"
+#~ msgstr "Impossível salvar as modificações: %s"
+
 #~ msgid "-m limit --limit 2/sec (default)"
 #~ msgstr "-m limit --limit 2/seg (padrão)"
 
index 90a322b32d57e7beb49c29bc011d87d354b42a0b..92119a73853810e49fdcc9942f3a0142309f2118 100644 (file)
@@ -142,14 +142,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-"Modificările la lista neagră au fost salvate. Reîmprospătați listele banIP "
-"pentru ca modificările să intre în vigoare."
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -158,6 +150,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -642,17 +640,12 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
-"Aceasta este lista neagră banIP locală pentru a interzice întotdeauna "
-"anumite adrese IP/CIDR.<br /> <em><b>Atenție:</b></em> adăugați doar o "
-"singură adresă IPv4, adresă IPv6 sau nume de domeniu pe linie. Comentariile "
-"introduse cu \"#\" sunt permise - wildcards și regex nu sunt permise."
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
 msgid ""
@@ -672,11 +665,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/blacklist.js:17
-msgid "Unable to save changes: %s"
-msgstr "Nu se pot salva modificările: %s"
-
 #: 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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -716,6 +706,28 @@ msgstr ""
 msgid "banIP"
 msgstr "banIP"
 
+#~ msgid ""
+#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
+#~ "take effect."
+#~ msgstr ""
+#~ "Modificările la lista neagră au fost salvate. Reîmprospătați listele "
+#~ "banIP pentru ca modificările să intre în vigoare."
+
+#~ msgid ""
+#~ "This is the local banIP blacklist to always-deny certain IP/CIDR "
+#~ "addresses.<br /> <em><b>Please note:</b></em> add only one IPv4 address, "
+#~ "IPv6 address or domain name per line. Comments introduced with '#' are "
+#~ "allowed - wildcards and regex are not."
+#~ msgstr ""
+#~ "Aceasta este lista neagră banIP locală pentru a interzice întotdeauna "
+#~ "anumite adrese IP/CIDR.<br /> <em><b>Atenție:</b></em> adăugați doar o "
+#~ "singură adresă IPv4, adresă IPv6 sau nume de domeniu pe linie. "
+#~ "Comentariile introduse cu \"#\" sunt permise - wildcards și regex nu sunt "
+#~ "permise."
+
+#~ msgid "Unable to save changes: %s"
+#~ msgstr "Nu se pot salva modificările: %s"
+
 #~ msgid "-m limit --limit 2/sec (default)"
 #~ msgstr "-m limit --limit 2/sec ( standard )"
 
index b27f315fb08ad1815ae106eaa1c641fa95b71d17..43d10f1aa83f30e40e85f148e4cbd47660806316 100644 (file)
@@ -142,14 +142,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-"Изменения в чёрном списке сохранены. Обновите списки banIP для применения "
-"изменений."
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -158,6 +150,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -637,12 +635,11 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
@@ -663,11 +660,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr "Задержка запуска"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-msgstr "Невозможно сохранить изменения: %s"
-
 #: 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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -707,6 +701,16 @@ msgstr ""
 msgid "banIP"
 msgstr "banIP"
 
+#~ msgid ""
+#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
+#~ "take effect."
+#~ msgstr ""
+#~ "Изменения в чёрном списке сохранены. Обновите списки banIP для применения "
+#~ "изменений."
+
+#~ msgid "Unable to save changes: %s"
+#~ msgstr "Невозможно сохранить изменения: %s"
+
 #~ msgid "-m limit --limit 2/sec (default)"
 #~ msgstr "-m limit --limit 2/сек (по умолчанию)"
 
index 04f7caee756c695de615dbad71f5be6f49b01f75..7c750b76183fbed04e147f7518b3cc4e920df54c 100644 (file)
@@ -141,12 +141,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -155,6 +149,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -633,12 +633,11 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
@@ -659,11 +658,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
index 5df8320374586e6acb425b463172f4705495b7cc..90d97b1e47abdf545b215895afa603d5a18e6d6f 100644 (file)
@@ -141,12 +141,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -155,6 +149,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -633,12 +633,11 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
@@ -659,11 +658,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
index d37fd4bce200a98135c7014c9d55f9ca58d91890..ec3b9a15b4026e0ac1b1fa1b436f56d497fe386b 100644 (file)
@@ -141,12 +141,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -155,6 +149,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -633,12 +633,11 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
@@ -659,11 +658,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
index a92f3d222e371473304798212aaf4a50e5a7436d..009800b482eaa831f96fdbfd59da035d79a6cbfc 100644 (file)
@@ -132,12 +132,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -146,6 +140,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -624,12 +624,11 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
@@ -650,11 +649,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
index 22e4599fb25474c47c024e0ae96a48f7788f1157..b9f1919955d268ed9a0cc92f76576b0afe68693b 100644 (file)
@@ -141,14 +141,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-"Kara liste değişiklikleri kaydedildi. Değişikliklerin etkili olacağı banIP "
-"listelerinizi yenileyin."
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -157,6 +149,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -637,18 +635,12 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
-"Bu, belirli IP / CIDR adreslerini her zaman reddeden yerel banIP kara "
-"listesidir. <br /> <em> <b> Lütfen unutmayın: </b> </em> satır başına "
-"yalnızca bir IPv4 adresi, IPv6 adresi veya etki alanı adı ekleyin . '#' İle "
-"tanıtılan yorumlara izin verilir - joker karakterlere ve normal ifadelere "
-"izin verilmez."
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
 msgid ""
@@ -668,11 +660,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/blacklist.js:17
-msgid "Unable to save changes: %s"
-msgstr "Değişiklikler kaydedilemiyor: %s"
-
 #: 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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -712,6 +701,28 @@ msgstr ""
 msgid "banIP"
 msgstr "banIP"
 
+#~ msgid ""
+#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
+#~ "take effect."
+#~ msgstr ""
+#~ "Kara liste değişiklikleri kaydedildi. Değişikliklerin etkili olacağı "
+#~ "banIP listelerinizi yenileyin."
+
+#~ msgid ""
+#~ "This is the local banIP blacklist to always-deny certain IP/CIDR "
+#~ "addresses.<br /> <em><b>Please note:</b></em> add only one IPv4 address, "
+#~ "IPv6 address or domain name per line. Comments introduced with '#' are "
+#~ "allowed - wildcards and regex are not."
+#~ msgstr ""
+#~ "Bu, belirli IP / CIDR adreslerini her zaman reddeden yerel banIP kara "
+#~ "listesidir. <br /> <em> <b> Lütfen unutmayın: </b> </em> satır başına "
+#~ "yalnızca bir IPv4 adresi, IPv6 adresi veya etki alanı adı ekleyin . '#' "
+#~ "İle tanıtılan yorumlara izin verilir - joker karakterlere ve normal "
+#~ "ifadelere izin verilmez."
+
+#~ msgid "Unable to save changes: %s"
+#~ msgstr "Değişiklikler kaydedilemiyor: %s"
+
 #~ msgid "-m limit --limit 2/sec (default)"
 #~ msgstr "-m limit --limit 2/sn (varsayılan)"
 
index 2d7cad7922f2143e506b0e97e71fadc24720c71c..487dfdfc00e280461ad21f4fcf0c2578afe4ed8d 100644 (file)
@@ -142,12 +142,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -156,6 +150,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -634,12 +634,11 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
@@ -660,11 +659,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr "Затримка запуску"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-msgstr "Не вдалося зберегти зміни: %s"
-
 #: 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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -704,6 +700,9 @@ msgstr ""
 msgid "banIP"
 msgstr "banIP"
 
+#~ msgid "Unable to save changes: %s"
+#~ msgstr "Не вдалося зберегти зміни: %s"
+
 #~ msgid "Additional Settings"
 #~ msgstr "Додаткові налаштування"
 
index 604994971204b7411b674a25996d9005a44d685f..1548622a28d4e5d0a26c2ef80fee892e9c14734e 100644 (file)
@@ -141,12 +141,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr ""
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -155,6 +149,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -633,12 +633,11 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
@@ -659,11 +658,8 @@ msgstr ""
 msgid "Trigger Delay"
 msgstr "Kích hoạt độ trễ"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
index fc9a0b1389a01c2ef73e3fb8eecd0efd5d4266ca..b7f17ae7fbe14a0226dde0db4b0e56a79522ae36 100644 (file)
@@ -141,12 +141,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr "黑名单更改已经保存。刷新您的 banIP 列表以使更改生效。"
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -155,6 +149,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -633,16 +633,12 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
-"这是本地 banIP 黑名单,用于始终拒绝某些 IP/CIDR 地址。<br /> <em><b>请注意:"
-"</b></em>每行仅添加一个 IPv4 地址、IPv6 地址或域名。注释以“#”开头。不允许使"
-"用通配符和正则表达式。"
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
 msgid ""
@@ -662,11 +658,8 @@ msgstr "banIP 通知邮件的主题。"
 msgid "Trigger Delay"
 msgstr "触发延时"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-msgstr "无法保存更改:%s"
-
 #: 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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -706,6 +699,24 @@ msgstr ""
 msgid "banIP"
 msgstr "banIP"
 
+#~ msgid ""
+#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
+#~ "take effect."
+#~ msgstr "黑名单更改已经保存。刷新您的 banIP 列表以使更改生效。"
+
+#~ msgid ""
+#~ "This is the local banIP blacklist to always-deny certain IP/CIDR "
+#~ "addresses.<br /> <em><b>Please note:</b></em> add only one IPv4 address, "
+#~ "IPv6 address or domain name per line. Comments introduced with '#' are "
+#~ "allowed - wildcards and regex are not."
+#~ msgstr ""
+#~ "这是本地 banIP 黑名单,用于始终拒绝某些 IP/CIDR 地址。<br /> <em><b>请注"
+#~ "意:</b></em>每行仅添加一个 IPv4 地址、IPv6 地址或域名。注释以“#”开头。不"
+#~ "允许使用通配符和正则表达式。"
+
+#~ msgid "Unable to save changes: %s"
+#~ msgstr "无法保存更改:%s"
+
 #~ msgid "-m limit --limit 2/sec (default)"
 #~ msgstr "-m limit --limit 2/sec(默认)"
 
index 209405804158727458a0a40becd093a5e5d06f91..00b2b46e27d33958cd201256a36c7fe34a6cd8bd 100644 (file)
@@ -141,12 +141,6 @@ msgstr ""
 msgid "Base working directory while banIP processing."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15
-msgid ""
-"Blacklist changes have been saved. Refresh your banIP lists that changes "
-"take effect."
-msgstr "黑名單變更已經儲存。更新您的 banIP 列表以使變更生效。"
-
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
 msgid "Blocklist Expiry"
 msgstr ""
@@ -155,6 +149,12 @@ msgstr ""
 msgid "Blocklist Feeds"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:15
+msgid ""
+"Blocklist modifications have been saved, restart banIP that changes take "
+"effect."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
 msgid "CPU Cores"
 msgstr ""
@@ -633,16 +633,12 @@ msgid ""
 "IPv6 address or domain name per line."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
 msgid ""
-"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
-"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
-"or domain name per line. Comments introduced with '#' are allowed - "
-"wildcards and regex are not."
+"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/"
+"IPv6 address or domain name per line."
 msgstr ""
-"這是本地 banIP 黑名單,用於始終拒絕某些 IP/CIDR 位址。<br /> <em><b>請注意:"
-"</b></em>每行僅加入一個 IPv4 位址、IPv6 位址或域名。註解以「#」開頭。不允許"
-"使用萬用字元和正規表達式。"
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
 msgid ""
@@ -662,11 +658,8 @@ msgstr "banIP 通知郵件的主題。"
 msgid "Trigger Delay"
 msgstr "觸發延遲"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17
-msgid "Unable to save changes: %s"
-msgstr "無法儲存變更(訊息:%s)"
-
 #: 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
 msgid "Unable to save modifications: %s"
 msgstr ""
 
@@ -706,6 +699,24 @@ msgstr ""
 msgid "banIP"
 msgstr "禁止IP"
 
+#~ msgid ""
+#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
+#~ "take effect."
+#~ msgstr "黑名單變更已經儲存。更新您的 banIP 列表以使變更生效。"
+
+#~ msgid ""
+#~ "This is the local banIP blacklist to always-deny certain IP/CIDR "
+#~ "addresses.<br /> <em><b>Please note:</b></em> add only one IPv4 address, "
+#~ "IPv6 address or domain name per line. Comments introduced with '#' are "
+#~ "allowed - wildcards and regex are not."
+#~ msgstr ""
+#~ "這是本地 banIP 黑名單,用於始終拒絕某些 IP/CIDR 位址。<br /> <em><b>請注"
+#~ "意:</b></em>每行僅加入一個 IPv4 位址、IPv6 位址或域名。註解以「#」開頭。"
+#~ "不允許使用萬用字元和正規表達式。"
+
+#~ msgid "Unable to save changes: %s"
+#~ msgstr "無法儲存變更(訊息:%s)"
+
 #~ msgid "-m limit --limit 2/sec (default)"
 #~ msgstr "-m limit --limit 2/秒 (預設)"