luci-app-banip: fix local blocklist access
* accidently commit the old local blacklist js with the former PR - fixed now. * sync translations Signed-off-by: Dirk Brenken <dev@brenken.org>
This commit is contained in:
parent
d04a47e5a8
commit
9c5c39fef4
38 changed files with 710 additions and 648 deletions
|
@ -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
|
|
||||||
});
|
|
|
@ -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
|
||||||
|
});
|
|
@ -142,12 +142,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -156,6 +150,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -634,12 +634,11 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
|
@ -660,11 +659,8 @@ msgstr ""
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr "تأخير الزناد"
|
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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -704,6 +700,9 @@ msgstr ""
|
||||||
msgid "banIP"
|
msgid "banIP"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Unable to save changes: %s"
|
||||||
|
#~ msgstr "تعذر حفظ التغييرات: s%"
|
||||||
|
|
||||||
#~ msgid "Download Queue"
|
#~ msgid "Download Queue"
|
||||||
#~ msgstr "تنزيل قائمة الانتظار"
|
#~ msgstr "تنزيل قائمة الانتظار"
|
||||||
|
|
||||||
|
|
|
@ -141,12 +141,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -155,6 +149,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -633,12 +633,11 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
|
@ -659,11 +658,8 @@ msgstr ""
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr ""
|
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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -141,12 +141,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -155,6 +149,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -633,12 +633,11 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
|
@ -659,11 +658,8 @@ msgstr ""
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr ""
|
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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -141,12 +141,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -155,6 +149,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -633,12 +633,11 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
|
@ -659,11 +658,8 @@ msgstr ""
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr ""
|
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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -141,12 +141,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -155,6 +149,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -633,12 +633,11 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
|
@ -659,11 +658,8 @@ msgstr ""
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr "Prodleva spuštění"
|
msgstr "Prodleva spuštění"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -141,14 +141,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -157,6 +149,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -637,17 +635,12 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@ -667,11 +660,8 @@ msgstr "Emne for banIP-meddelelses-e-mails."
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr "Udløserforsinkelse"
|
msgstr "Udløserforsinkelse"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -711,6 +701,27 @@ msgstr ""
|
||||||
msgid "banIP"
|
msgid "banIP"
|
||||||
msgstr "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)"
|
#~ msgid "-m limit --limit 2/sec (default)"
|
||||||
#~ msgstr "-m grænse --limit 2/sek (standard)"
|
#~ msgstr "-m grænse --limit 2/sek (standard)"
|
||||||
|
|
||||||
|
|
|
@ -141,14 +141,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -157,6 +149,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -639,18 +637,12 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@ -670,11 +662,8 @@ msgstr "Betreff für banIP-Benachrichtigungs-E-Mails."
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr "Verzögerung der Trigger-Bedingung"
|
msgstr "Verzögerung der Trigger-Bedingung"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -714,6 +703,28 @@ msgstr ""
|
||||||
msgid "banIP"
|
msgid "banIP"
|
||||||
msgstr "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)"
|
#~ msgid "-m limit --limit 2/sec (default)"
|
||||||
#~ msgstr "-m limit --limit 2/sec (Standart)"
|
#~ msgstr "-m limit --limit 2/sec (Standart)"
|
||||||
|
|
||||||
|
|
|
@ -141,12 +141,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -155,6 +149,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -633,12 +633,11 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
|
@ -659,11 +658,8 @@ msgstr ""
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr ""
|
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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -141,12 +141,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -155,6 +149,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -633,12 +633,11 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
|
@ -659,11 +658,8 @@ msgstr ""
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr ""
|
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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -144,14 +144,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -160,6 +152,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -647,18 +645,12 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@ -678,11 +670,8 @@ msgstr "Tema para correos electrónicos de notificación de banIP."
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr "Retraso de disparo"
|
msgstr "Retraso de disparo"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -722,6 +711,28 @@ msgstr ""
|
||||||
msgid "banIP"
|
msgid "banIP"
|
||||||
msgstr "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)"
|
#~ msgid "-m limit --limit 2/sec (default)"
|
||||||
#~ msgstr "-m limit --limit 2/sec (predeterminado)"
|
#~ msgstr "-m limit --limit 2/sec (predeterminado)"
|
||||||
|
|
||||||
|
|
|
@ -141,12 +141,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -155,6 +149,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -633,12 +633,11 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
|
@ -659,11 +658,8 @@ msgstr ""
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr ""
|
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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -703,6 +699,9 @@ msgstr ""
|
||||||
msgid "banIP"
|
msgid "banIP"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Unable to save changes: %s"
|
||||||
|
#~ msgstr "Muutoksia ei voitu tallentaa: %s"
|
||||||
|
|
||||||
#~ msgid "-m limit --limit 2/sec (default)"
|
#~ msgid "-m limit --limit 2/sec (default)"
|
||||||
#~ msgstr "-m limit --limit 2/sec (oletus)"
|
#~ msgstr "-m limit --limit 2/sec (oletus)"
|
||||||
|
|
||||||
|
|
|
@ -141,14 +141,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -157,6 +149,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -644,18 +642,12 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@ -675,11 +667,8 @@ msgstr "Rubrique pour les courriels de notification banIP."
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr "Délai de déclenchement"
|
msgstr "Délai de déclenchement"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -719,6 +708,28 @@ msgstr ""
|
||||||
msgid "banIP"
|
msgid "banIP"
|
||||||
msgstr "bannissement IP"
|
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)"
|
#~ msgid "-m limit --limit 2/sec (default)"
|
||||||
#~ msgstr "-m limit --limit 2/sec (défaut)"
|
#~ msgstr "-m limit --limit 2/sec (défaut)"
|
||||||
|
|
||||||
|
|
|
@ -142,12 +142,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -156,6 +150,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -634,12 +634,11 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
|
@ -660,11 +659,8 @@ msgstr ""
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr ""
|
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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -135,12 +135,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -149,6 +143,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -627,12 +627,11 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
|
@ -653,11 +652,8 @@ msgstr ""
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr ""
|
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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -141,14 +141,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -157,6 +149,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -636,12 +634,11 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
|
@ -662,12 +659,8 @@ msgstr ""
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr "Aktiváló késleltetése"
|
msgstr "Aktiváló késleltetése"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -707,6 +700,17 @@ msgstr ""
|
||||||
msgid "banIP"
|
msgid "banIP"
|
||||||
msgstr "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"
|
#~ msgid "1 hour"
|
||||||
#~ msgstr "1 óra"
|
#~ msgstr "1 óra"
|
||||||
|
|
||||||
|
|
|
@ -141,12 +141,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -155,6 +149,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -633,12 +633,11 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
|
@ -659,11 +658,8 @@ msgstr ""
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr ""
|
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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -703,6 +699,9 @@ msgstr ""
|
||||||
msgid "banIP"
|
msgid "banIP"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Unable to save changes: %s"
|
||||||
|
#~ msgstr "Impossibile salvare le modifiche: %s"
|
||||||
|
|
||||||
#~ msgid "-m limit --limit 2/sec (default)"
|
#~ msgid "-m limit --limit 2/sec (default)"
|
||||||
#~ msgstr "-m limit --limit 2/sec (predefinito)"
|
#~ msgstr "-m limit --limit 2/sec (predefinito)"
|
||||||
|
|
||||||
|
|
|
@ -141,12 +141,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -155,6 +149,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -633,12 +633,11 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
|
@ -659,11 +658,8 @@ msgstr ""
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr "トリガ遅延"
|
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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -703,6 +699,9 @@ msgstr ""
|
||||||
msgid "banIP"
|
msgid "banIP"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Unable to save changes: %s"
|
||||||
|
#~ msgstr "変更を保存できませんでした: %s"
|
||||||
|
|
||||||
#~ msgid "Action"
|
#~ msgid "Action"
|
||||||
#~ msgstr "アクション"
|
#~ msgstr "アクション"
|
||||||
|
|
||||||
|
|
|
@ -142,12 +142,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -156,6 +150,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -634,12 +634,11 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
|
@ -660,11 +659,8 @@ msgstr ""
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr ""
|
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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -141,12 +141,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -155,6 +149,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -633,12 +633,11 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
|
@ -659,11 +658,8 @@ msgstr ""
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr ""
|
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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -141,12 +141,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -155,6 +149,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -633,12 +633,11 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
|
@ -659,11 +658,8 @@ msgstr ""
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr ""
|
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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -141,12 +141,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -155,6 +149,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -634,12 +634,11 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
|
@ -660,11 +659,8 @@ msgstr ""
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr "Utløserforsinkelse"
|
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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -704,6 +700,9 @@ msgstr ""
|
||||||
msgid "banIP"
|
msgid "banIP"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Unable to save changes: %s"
|
||||||
|
#~ msgstr "Kunne ikke lagre endringer: %s"
|
||||||
|
|
||||||
#~ msgid "Active Sources"
|
#~ msgid "Active Sources"
|
||||||
#~ msgstr "Aktive kilder"
|
#~ msgstr "Aktive kilder"
|
||||||
|
|
||||||
|
|
|
@ -141,14 +141,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -157,6 +149,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -640,12 +638,11 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
|
@ -666,11 +663,8 @@ msgstr ""
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr ""
|
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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -710,6 +704,13 @@ msgstr ""
|
||||||
msgid "banIP"
|
msgid "banIP"
|
||||||
msgstr ""
|
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)"
|
#~ msgid "-m limit --limit 2/sec (default)"
|
||||||
#~ msgstr "-m-limiet --limiet 2/sec (standaard)"
|
#~ msgstr "-m-limiet --limiet 2/sec (standaard)"
|
||||||
|
|
||||||
|
|
|
@ -142,14 +142,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -158,6 +150,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -640,17 +638,12 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@ -670,11 +663,8 @@ msgstr "Temat dla wiadomości e-mail z powiadomieniem banIP."
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr "Opóźnienie wyzwalacza"
|
msgstr "Opóźnienie wyzwalacza"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -714,6 +704,28 @@ msgstr ""
|
||||||
msgid "banIP"
|
msgid "banIP"
|
||||||
msgstr "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)"
|
#~ msgid "-m limit --limit 2/sec (default)"
|
||||||
#~ msgstr "-m limit --limit 2/sec (domyślnie)"
|
#~ msgstr "-m limit --limit 2/sec (domyślnie)"
|
||||||
|
|
||||||
|
|
|
@ -141,14 +141,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -157,6 +149,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -639,17 +637,12 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@ -669,11 +662,8 @@ msgstr "Tópico para e-mails de notificação do banIP."
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr "Atraso do Gatilho"
|
msgstr "Atraso do Gatilho"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -713,6 +703,27 @@ msgstr ""
|
||||||
msgid "banIP"
|
msgid "banIP"
|
||||||
msgstr "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)"
|
#~ msgid "-m limit --limit 2/sec (default)"
|
||||||
#~ msgstr "-m limit --limit 2/seg (predefinição)"
|
#~ msgstr "-m limit --limit 2/seg (predefinição)"
|
||||||
|
|
||||||
|
|
|
@ -141,14 +141,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -157,6 +149,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -639,17 +637,12 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@ -669,11 +662,8 @@ msgstr "Tópico para e-mails de notificação do banIP."
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr "Gatilho de Atraso"
|
msgstr "Gatilho de Atraso"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -713,6 +703,27 @@ msgstr ""
|
||||||
msgid "banIP"
|
msgid "banIP"
|
||||||
msgstr "Banir IP"
|
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)"
|
#~ msgid "-m limit --limit 2/sec (default)"
|
||||||
#~ msgstr "-m limit --limit 2/seg (padrão)"
|
#~ msgstr "-m limit --limit 2/seg (padrão)"
|
||||||
|
|
||||||
|
|
|
@ -142,14 +142,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -158,6 +150,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -642,17 +640,12 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@ -672,11 +665,8 @@ msgstr "Subiect pentru e-mailurile de notificare banIP."
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr "Intârzierea declanșării"
|
msgstr "Intârzierea declanșării"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -716,6 +706,28 @@ msgstr ""
|
||||||
msgid "banIP"
|
msgid "banIP"
|
||||||
msgstr "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)"
|
#~ msgid "-m limit --limit 2/sec (default)"
|
||||||
#~ msgstr "-m limit --limit 2/sec ( standard )"
|
#~ msgstr "-m limit --limit 2/sec ( standard )"
|
||||||
|
|
||||||
|
|
|
@ -142,14 +142,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -158,6 +150,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -637,12 +635,11 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
|
@ -663,11 +660,8 @@ msgstr ""
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr "Задержка запуска"
|
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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -707,6 +701,16 @@ msgstr ""
|
||||||
msgid "banIP"
|
msgid "banIP"
|
||||||
msgstr "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)"
|
#~ msgid "-m limit --limit 2/sec (default)"
|
||||||
#~ msgstr "-m limit --limit 2/сек (по умолчанию)"
|
#~ msgstr "-m limit --limit 2/сек (по умолчанию)"
|
||||||
|
|
||||||
|
|
|
@ -141,12 +141,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -155,6 +149,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -633,12 +633,11 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
|
@ -659,11 +658,8 @@ msgstr ""
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr ""
|
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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -141,12 +141,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -155,6 +149,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -633,12 +633,11 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
|
@ -659,11 +658,8 @@ msgstr ""
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr ""
|
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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -141,12 +141,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -155,6 +149,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -633,12 +633,11 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
|
@ -659,11 +658,8 @@ msgstr ""
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr ""
|
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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -132,12 +132,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -146,6 +140,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -624,12 +624,11 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
|
@ -650,11 +649,8 @@ msgstr ""
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr ""
|
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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -141,14 +141,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -157,6 +149,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -637,18 +635,12 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@ -668,11 +660,8 @@ msgstr "BanIP bildirim e-postaları için konu."
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr "Tetikleme Gecikmesi"
|
msgstr "Tetikleme Gecikmesi"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -712,6 +701,28 @@ msgstr ""
|
||||||
msgid "banIP"
|
msgid "banIP"
|
||||||
msgstr "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)"
|
#~ msgid "-m limit --limit 2/sec (default)"
|
||||||
#~ msgstr "-m limit --limit 2/sn (varsayılan)"
|
#~ msgstr "-m limit --limit 2/sn (varsayılan)"
|
||||||
|
|
||||||
|
|
|
@ -142,12 +142,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -156,6 +150,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -634,12 +634,11 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
|
@ -660,11 +659,8 @@ msgstr ""
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr "Затримка запуску"
|
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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -704,6 +700,9 @@ msgstr ""
|
||||||
msgid "banIP"
|
msgid "banIP"
|
||||||
msgstr "banIP"
|
msgstr "banIP"
|
||||||
|
|
||||||
|
#~ msgid "Unable to save changes: %s"
|
||||||
|
#~ msgstr "Не вдалося зберегти зміни: %s"
|
||||||
|
|
||||||
#~ msgid "Additional Settings"
|
#~ msgid "Additional Settings"
|
||||||
#~ msgstr "Додаткові налаштування"
|
#~ msgstr "Додаткові налаштування"
|
||||||
|
|
||||||
|
|
|
@ -141,12 +141,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -155,6 +149,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -633,12 +633,11 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
|
@ -659,11 +658,8 @@ msgstr ""
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr "Kích hoạt độ trễ"
|
msgstr "Kích hoạt độ trễ"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -141,12 +141,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -155,6 +149,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -633,16 +633,12 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"这是本地 banIP 黑名单,用于始终拒绝某些 IP/CIDR 地址。<br /> <em><b>请注意:"
|
|
||||||
"</b></em>每行仅添加一个 IPv4 地址、IPv6 地址或域名。注释以“#”开头。不允许使"
|
|
||||||
"用通配符和正则表达式。"
|
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@ -662,11 +658,8 @@ msgstr "banIP 通知邮件的主题。"
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr "触发延时"
|
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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -706,6 +699,24 @@ msgstr ""
|
||||||
msgid "banIP"
|
msgid "banIP"
|
||||||
msgstr "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)"
|
#~ msgid "-m limit --limit 2/sec (default)"
|
||||||
#~ msgstr "-m limit --limit 2/sec(默认)"
|
#~ msgstr "-m limit --limit 2/sec(默认)"
|
||||||
|
|
||||||
|
|
|
@ -141,12 +141,6 @@ msgstr ""
|
||||||
msgid "Base working directory while banIP processing."
|
msgid "Base working directory while banIP processing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413
|
||||||
msgid "Blocklist Expiry"
|
msgid "Blocklist Expiry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -155,6 +149,12 @@ msgstr ""
|
||||||
msgid "Blocklist Feeds"
|
msgid "Blocklist Feeds"
|
||||||
msgstr ""
|
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
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335
|
||||||
msgid "CPU Cores"
|
msgid "CPU Cores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -633,16 +633,12 @@ msgid ""
|
||||||
"IPv6 address or domain name per line."
|
"IPv6 address or domain name per line."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the local banIP blacklist to always-deny certain IP/CIDR addresses."
|
"This is the local banIP blocklist that will prevent certain MAC/IP/CIDR "
|
||||||
"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address "
|
"addresses.<br /> <em><b>Please note:</b></em> add only exactly one MAC/IPv4/"
|
||||||
"or domain name per line. Comments introduced with '#' are allowed - "
|
"IPv6 address or domain name per line."
|
||||||
"wildcards and regex are not."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"這是本地 banIP 黑名單,用於始終拒絕某些 IP/CIDR 位址。<br /> <em><b>請注意:"
|
|
||||||
"</b></em>每行僅加入一個 IPv4 位址、IPv6 位址或域名。註解以「#」開頭。不允許"
|
|
||||||
"使用萬用字元和正規表達式。"
|
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:180
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@ -662,11 +658,8 @@ msgstr "banIP 通知郵件的主題。"
|
||||||
msgid "Trigger Delay"
|
msgid "Trigger Delay"
|
||||||
msgstr "觸發延遲"
|
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/allowlist.js:17
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:17
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -706,6 +699,24 @@ msgstr ""
|
||||||
msgid "banIP"
|
msgid "banIP"
|
||||||
msgstr "禁止IP"
|
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)"
|
#~ msgid "-m limit --limit 2/sec (default)"
|
||||||
#~ msgstr "-m limit --limit 2/秒 (預設)"
|
#~ msgstr "-m limit --limit 2/秒 (預設)"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue