summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js37
-rw-r--r--applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js37
-rw-r--r--applications/luci-app-banip/po/ar/banip.po29
-rw-r--r--applications/luci-app-banip/po/bg/banip.po26
-rw-r--r--applications/luci-app-banip/po/bn_BD/banip.po26
-rw-r--r--applications/luci-app-banip/po/ca/banip.po26
-rw-r--r--applications/luci-app-banip/po/cs/banip.po26
-rw-r--r--applications/luci-app-banip/po/da/banip.po53
-rw-r--r--applications/luci-app-banip/po/de/banip.po55
-rw-r--r--applications/luci-app-banip/po/el/banip.po26
-rw-r--r--applications/luci-app-banip/po/en/banip.po26
-rw-r--r--applications/luci-app-banip/po/es/banip.po55
-rw-r--r--applications/luci-app-banip/po/fi/banip.po29
-rw-r--r--applications/luci-app-banip/po/fr/banip.po55
-rw-r--r--applications/luci-app-banip/po/he/banip.po26
-rw-r--r--applications/luci-app-banip/po/hi/banip.po26
-rw-r--r--applications/luci-app-banip/po/hu/banip.po40
-rw-r--r--applications/luci-app-banip/po/it/banip.po29
-rw-r--r--applications/luci-app-banip/po/ja/banip.po29
-rw-r--r--applications/luci-app-banip/po/ko/banip.po26
-rw-r--r--applications/luci-app-banip/po/mr/banip.po26
-rw-r--r--applications/luci-app-banip/po/ms/banip.po26
-rw-r--r--applications/luci-app-banip/po/nb_NO/banip.po29
-rw-r--r--applications/luci-app-banip/po/nl/banip.po35
-rw-r--r--applications/luci-app-banip/po/pl/banip.po54
-rw-r--r--applications/luci-app-banip/po/pt/banip.po53
-rw-r--r--applications/luci-app-banip/po/pt_BR/banip.po53
-rw-r--r--applications/luci-app-banip/po/ro/banip.po54
-rw-r--r--applications/luci-app-banip/po/ru/banip.po38
-rw-r--r--applications/luci-app-banip/po/sk/banip.po26
-rw-r--r--applications/luci-app-banip/po/sv/banip.po26
-rw-r--r--applications/luci-app-banip/po/sw/banip.po26
-rw-r--r--applications/luci-app-banip/po/templates/banip.pot26
-rw-r--r--applications/luci-app-banip/po/tr/banip.po55
-rw-r--r--applications/luci-app-banip/po/uk/banip.po29
-rw-r--r--applications/luci-app-banip/po/vi/banip.po26
-rw-r--r--applications/luci-app-banip/po/zh_Hans/banip.po47
-rw-r--r--applications/luci-app-banip/po/zh_Hant/banip.po47
38 files changed, 710 insertions, 648 deletions
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
index f172158063..0000000000
--- a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js
+++ /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
index 0000000000..888a189ed0
--- /dev/null
+++ b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js
@@ -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
+});
diff --git a/applications/luci-app-banip/po/ar/banip.po b/applications/luci-app-banip/po/ar/banip.po
index 08ed101809..ed20d28916 100644
--- a/applications/luci-app-banip/po/ar/banip.po
+++ b/applications/luci-app-banip/po/ar/banip.po
@@ -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 "تنزيل قائمة الانتظار"
diff --git a/applications/luci-app-banip/po/bg/banip.po b/applications/luci-app-banip/po/bg/banip.po
index 2d6ebeaa4a..e9608e8dcb 100644
--- a/applications/luci-app-banip/po/bg/banip.po
+++ b/applications/luci-app-banip/po/bg/banip.po
@@ -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 ""
diff --git a/applications/luci-app-banip/po/bn_BD/banip.po b/applications/luci-app-banip/po/bn_BD/banip.po
index c55dd5d6df..f8d03bd74a 100644
--- a/applications/luci-app-banip/po/bn_BD/banip.po
+++ b/applications/luci-app-banip/po/bn_BD/banip.po
@@ -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 ""
diff --git a/applications/luci-app-banip/po/ca/banip.po b/applications/luci-app-banip/po/ca/banip.po
index 688a1056e3..5aec859af0 100644
--- a/applications/luci-app-banip/po/ca/banip.po
+++ b/applications/luci-app-banip/po/ca/banip.po
@@ -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 ""
diff --git a/applications/luci-app-banip/po/cs/banip.po b/applications/luci-app-banip/po/cs/banip.po
index 62f0238f73..2e3434c238 100644
--- a/applications/luci-app-banip/po/cs/banip.po
+++ b/applications/luci-app-banip/po/cs/banip.po
@@ -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 ""
diff --git a/applications/luci-app-banip/po/da/banip.po b/applications/luci-app-banip/po/da/banip.po
index c9b6e14aba..7c0c395b2f 100644
--- a/applications/luci-app-banip/po/da/banip.po
+++ b/applications/luci-app-banip/po/da/banip.po
@@ -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)"
diff --git a/applications/luci-app-banip/po/de/banip.po b/applications/luci-app-banip/po/de/banip.po
index 99d12cc36b..b4a918ad50 100644
--- a/applications/luci-app-banip/po/de/banip.po
+++ b/applications/luci-app-banip/po/de/banip.po
@@ -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)"
diff --git a/applications/luci-app-banip/po/el/banip.po b/applications/luci-app-banip/po/el/banip.po
index a62897b82b..c8a95ce1d1 100644
--- a/applications/luci-app-banip/po/el/banip.po
+++ b/applications/luci-app-banip/po/el/banip.po
@@ -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 ""
diff --git a/applications/luci-app-banip/po/en/banip.po b/applications/luci-app-banip/po/en/banip.po
index 3dda4f8b71..15b778dd74 100644
--- a/applications/luci-app-banip/po/en/banip.po
+++ b/applications/luci-app-banip/po/en/banip.po
@@ -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 ""
diff --git a/applications/luci-app-banip/po/es/banip.po b/applications/luci-app-banip/po/es/banip.po
index 569b43006a..268a277996 100644
--- a/applications/luci-app-banip/po/es/banip.po
+++ b/applications/luci-app-banip/po/es/banip.po
@@ -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)"
diff --git a/applications/luci-app-banip/po/fi/banip.po b/applications/luci-app-banip/po/fi/banip.po
index 5e2268eff5..8c177c6dad 100644
--- a/applications/luci-app-banip/po/fi/banip.po
+++ b/applications/luci-app-banip/po/fi/banip.po
@@ -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)"
diff --git a/applications/luci-app-banip/po/fr/banip.po b/applications/luci-app-banip/po/fr/banip.po
index 0258bb9c19..d7392565cb 100644
--- a/applications/luci-app-banip/po/fr/banip.po
+++ b/applications/luci-app-banip/po/fr/banip.po
@@ -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)"
diff --git a/applications/luci-app-banip/po/he/banip.po b/applications/luci-app-banip/po/he/banip.po
index 2b4cc5d26a..b92dbd02bf 100644
--- a/applications/luci-app-banip/po/he/banip.po
+++ b/applications/luci-app-banip/po/he/banip.po
@@ -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 ""
diff --git a/applications/luci-app-banip/po/hi/banip.po b/applications/luci-app-banip/po/hi/banip.po
index f7fcfbaf06..fe146b0d7b 100644
--- a/applications/luci-app-banip/po/hi/banip.po
+++ b/applications/luci-app-banip/po/hi/banip.po
@@ -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 ""
diff --git a/applications/luci-app-banip/po/hu/banip.po b/applications/luci-app-banip/po/hu/banip.po
index 82aadaa717..2ebd39db77 100644
--- a/applications/luci-app-banip/po/hu/banip.po
+++ b/applications/luci-app-banip/po/hu/banip.po
@@ -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"
diff --git a/applications/luci-app-banip/po/it/banip.po b/applications/luci-app-banip/po/it/banip.po
index 3dfc3c1fd3..eacdc18469 100644
--- a/applications/luci-app-banip/po/it/banip.po
+++ b/applications/luci-app-banip/po/it/banip.po
@@ -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)"
diff --git a/applications/luci-app-banip/po/ja/banip.po b/applications/luci-app-banip/po/ja/banip.po
index 4ee247a147..617c67c1f5 100644
--- a/applications/luci-app-banip/po/ja/banip.po
+++ b/applications/luci-app-banip/po/ja/banip.po
@@ -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 "アクション"
diff --git a/applications/luci-app-banip/po/ko/banip.po b/applications/luci-app-banip/po/ko/banip.po
index 21e18dfa68..eebb946564 100644
--- a/applications/luci-app-banip/po/ko/banip.po
+++ b/applications/luci-app-banip/po/ko/banip.po
@@ -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 ""
diff --git a/applications/luci-app-banip/po/mr/banip.po b/applications/luci-app-banip/po/mr/banip.po
index 43143213a8..3285a07f15 100644
--- a/applications/luci-app-banip/po/mr/banip.po
+++ b/applications/luci-app-banip/po/mr/banip.po
@@ -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 ""
diff --git a/applications/luci-app-banip/po/ms/banip.po b/applications/luci-app-banip/po/ms/banip.po
index aa2d534c87..3b156673c5 100644
--- a/applications/luci-app-banip/po/ms/banip.po
+++ b/applications/luci-app-banip/po/ms/banip.po
@@ -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 ""
diff --git a/applications/luci-app-banip/po/nb_NO/banip.po b/applications/luci-app-banip/po/nb_NO/banip.po
index 4dc96aa821..79363ca165 100644
--- a/applications/luci-app-banip/po/nb_NO/banip.po
+++ b/applications/luci-app-banip/po/nb_NO/banip.po
@@ -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"
diff --git a/applications/luci-app-banip/po/nl/banip.po b/applications/luci-app-banip/po/nl/banip.po
index 68424f2306..add39da26d 100644
--- a/applications/luci-app-banip/po/nl/banip.po
+++ b/applications/luci-app-banip/po/nl/banip.po
@@ -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)"
diff --git a/applications/luci-app-banip/po/pl/banip.po b/applications/luci-app-banip/po/pl/banip.po
index d364cd6d0c..cb533d91e2 100644
--- a/applications/luci-app-banip/po/pl/banip.po
+++ b/applications/luci-app-banip/po/pl/banip.po
@@ -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)"
diff --git a/applications/luci-app-banip/po/pt/banip.po b/applications/luci-app-banip/po/pt/banip.po
index afa7ab6574..712e1c78a1 100644
--- a/applications/luci-app-banip/po/pt/banip.po
+++ b/applications/luci-app-banip/po/pt/banip.po
@@ -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)"
diff --git a/applications/luci-app-banip/po/pt_BR/banip.po b/applications/luci-app-banip/po/pt_BR/banip.po
index 4a6ddf9704..cf333e2118 100644
--- a/applications/luci-app-banip/po/pt_BR/banip.po
+++ b/applications/luci-app-banip/po/pt_BR/banip.po
@@ -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)"
diff --git a/applications/luci-app-banip/po/ro/banip.po b/applications/luci-app-banip/po/ro/banip.po
index 90a322b32d..92119a7385 100644
--- a/applications/luci-app-banip/po/ro/banip.po
+++ b/applications/luci-app-banip/po/ro/banip.po
@@ -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 )"
diff --git a/applications/luci-app-banip/po/ru/banip.po b/applications/luci-app-banip/po/ru/banip.po
index b27f315fb0..43d10f1aa8 100644
--- a/applications/luci-app-banip/po/ru/banip.po
+++ b/applications/luci-app-banip/po/ru/banip.po
@@ -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/сек (по умолчанию)"
diff --git a/applications/luci-app-banip/po/sk/banip.po b/applications/luci-app-banip/po/sk/banip.po
index 04f7caee75..7c750b7618 100644
--- a/applications/luci-app-banip/po/sk/banip.po
+++ b/applications/luci-app-banip/po/sk/banip.po
@@ -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 ""
diff --git a/applications/luci-app-banip/po/sv/banip.po b/applications/luci-app-banip/po/sv/banip.po
index 5df8320374..90d97b1e47 100644
--- a/applications/luci-app-banip/po/sv/banip.po
+++ b/applications/luci-app-banip/po/sv/banip.po
@@ -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 ""
diff --git a/applications/luci-app-banip/po/sw/banip.po b/applications/luci-app-banip/po/sw/banip.po
index d37fd4bce2..ec3b9a15b4 100644
--- a/applications/luci-app-banip/po/sw/banip.po
+++ b/applications/luci-app-banip/po/sw/banip.po
@@ -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 ""
diff --git a/applications/luci-app-banip/po/templates/banip.pot b/applications/luci-app-banip/po/templates/banip.pot
index a92f3d222e..009800b482 100644
--- a/applications/luci-app-banip/po/templates/banip.pot
+++ b/applications/luci-app-banip/po/templates/banip.pot
@@ -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 ""
diff --git a/applications/luci-app-banip/po/tr/banip.po b/applications/luci-app-banip/po/tr/banip.po
index 22e4599fb2..b9f1919955 100644
--- a/applications/luci-app-banip/po/tr/banip.po
+++ b/applications/luci-app-banip/po/tr/banip.po
@@ -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)"
diff --git a/applications/luci-app-banip/po/uk/banip.po b/applications/luci-app-banip/po/uk/banip.po
index 2d7cad7922..487dfdfc00 100644
--- a/applications/luci-app-banip/po/uk/banip.po
+++ b/applications/luci-app-banip/po/uk/banip.po
@@ -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 "Додаткові налаштування"
diff --git a/applications/luci-app-banip/po/vi/banip.po b/applications/luci-app-banip/po/vi/banip.po
index 6049949712..1548622a28 100644
--- a/applications/luci-app-banip/po/vi/banip.po
+++ b/applications/luci-app-banip/po/vi/banip.po
@@ -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 ""
diff --git a/applications/luci-app-banip/po/zh_Hans/banip.po b/applications/luci-app-banip/po/zh_Hans/banip.po
index fc9a0b1389..b7f17ae7fb 100644
--- a/applications/luci-app-banip/po/zh_Hans/banip.po
+++ b/applications/luci-app-banip/po/zh_Hans/banip.po
@@ -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(默认)"
diff --git a/applications/luci-app-banip/po/zh_Hant/banip.po b/applications/luci-app-banip/po/zh_Hant/banip.po
index 2094058041..00b2b46e27 100644
--- a/applications/luci-app-banip/po/zh_Hant/banip.po
+++ b/applications/luci-app-banip/po/zh_Hant/banip.po
@@ -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/秒 (預設)"