luci-app-banip: more feed editor improvements
* add more 'upload' and 'save' safeguards * save only keys with values in exported JSON structure/file Signed-off-by: Dirk Brenken <dev@brenken.org>
This commit is contained in:
parent
0944811fbc
commit
d25d5c28b7
37 changed files with 846 additions and 798 deletions
|
@ -73,6 +73,11 @@ function handleEdit(ev) {
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
fs.write('/etc/banip/banip.custom.feeds', null).then(function () {
|
||||||
|
ui.addNotification(null, E('p', _('Upload of the custom feed file failed.')), 'error');
|
||||||
|
});
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
location.reload();
|
location.reload();
|
||||||
} else {
|
} else {
|
||||||
|
@ -122,6 +127,9 @@ function handleEdit(ev) {
|
||||||
for (const element of elements) {
|
for (const element of elements) {
|
||||||
let key = element.id.split('.')[4];
|
let key = element.id.split('.')[4];
|
||||||
let value = element.value || "";
|
let value = element.value || "";
|
||||||
|
if (value === "") {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
switch (key) {
|
switch (key) {
|
||||||
case 'url_4':
|
case 'url_4':
|
||||||
subElements.url_4 = value;
|
subElements.url_4 = value;
|
||||||
|
@ -143,9 +151,13 @@ function handleEdit(ev) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
sumSubElements.push(nodeKeys[i].value, subElements);
|
if (nodeKeys[i].value !== "" && subElements.descr !== "") {
|
||||||
|
sumSubElements.push(nodeKeys[i].value, subElements);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (sumSubElements.length > 0) {
|
||||||
|
exportJson = JSON.stringify(sumSubElements).replace(/^\[/, '{\n').replace(/\}]$/, '\n\t}\n}\n').replace(/,{"/g, ':{\n\t"').replace(/"},"/g, '"\n\t},\n"').replace(/","/g, '",\n\t"');
|
||||||
}
|
}
|
||||||
exportJson = JSON.stringify(sumSubElements).replace(/^\[/, '{\n').replace(/\}]$/, '\n\t}\n}\n').replace(/,{"/g, ':{\n\t"').replace(/"},"/g, '"\n\t},\n"').replace(/","/g, '",\n\t"');
|
|
||||||
return fs.write('/etc/banip/banip.custom.feeds', exportJson).then(function () {
|
return fs.write('/etc/banip/banip.custom.feeds', exportJson).then(function () {
|
||||||
location.reload();
|
location.reload();
|
||||||
});
|
});
|
||||||
|
|
|
@ -181,7 +181,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -198,7 +198,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -216,7 +216,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "الوصف"
|
msgstr "الوصف"
|
||||||
|
|
||||||
|
@ -234,7 +234,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -294,8 +294,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -323,7 +323,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -331,7 +331,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -339,11 +339,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -389,11 +389,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "معلومة"
|
msgstr "معلومة"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -571,8 +571,8 @@ msgstr ""
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -615,11 +615,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr "نتيجة"
|
msgstr "نتيجة"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -631,7 +631,7 @@ msgstr "تشغيل الإشارات"
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -812,11 +812,11 @@ msgstr "تأخير الزناد"
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -825,12 +825,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -860,7 +861,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -197,7 +197,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr "Държави"
|
msgstr "Държави"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -215,7 +215,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Описание"
|
msgstr "Описание"
|
||||||
|
|
||||||
|
@ -233,7 +233,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr "Не проверявай SSL сертификати по време на сваляне."
|
msgstr "Не проверявай SSL сертификати по време на сваляне."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -293,8 +293,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -322,7 +322,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -330,7 +330,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -338,11 +338,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -388,11 +388,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Информация"
|
msgstr "Информация"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -570,8 +570,8 @@ msgstr ""
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -614,11 +614,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -630,7 +630,7 @@ msgstr ""
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -811,11 +811,11 @@ msgstr ""
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -824,12 +824,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -859,7 +860,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -197,7 +197,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -215,7 +215,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -233,7 +233,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -293,8 +293,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -322,7 +322,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -330,7 +330,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -338,11 +338,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -388,11 +388,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -570,8 +570,8 @@ msgstr ""
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -614,11 +614,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -630,7 +630,7 @@ msgstr ""
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -811,11 +811,11 @@ msgstr ""
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -824,12 +824,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -859,7 +860,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -197,7 +197,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -215,7 +215,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Descripció"
|
msgstr "Descripció"
|
||||||
|
|
||||||
|
@ -233,7 +233,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -293,8 +293,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -322,7 +322,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -330,7 +330,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -338,11 +338,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -388,11 +388,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informació"
|
msgstr "Informació"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -570,8 +570,8 @@ msgstr ""
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -614,11 +614,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -630,7 +630,7 @@ msgstr ""
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -811,11 +811,11 @@ msgstr ""
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -824,12 +824,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -859,7 +860,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -197,7 +197,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -215,7 +215,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Popis"
|
msgstr "Popis"
|
||||||
|
|
||||||
|
@ -233,7 +233,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -293,8 +293,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -322,7 +322,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -330,7 +330,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -338,11 +338,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -388,11 +388,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -570,8 +570,8 @@ msgstr ""
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -614,11 +614,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -630,7 +630,7 @@ msgstr ""
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -811,11 +811,11 @@ msgstr "Prodleva spuštění"
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -824,12 +824,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -859,7 +860,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -197,7 +197,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr "Lande"
|
msgstr "Lande"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -215,7 +215,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -233,7 +233,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr "Kontroller ikke SSL-servercertifikater under download."
|
msgstr "Kontroller ikke SSL-servercertifikater under download."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -293,8 +293,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -322,7 +322,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -330,7 +330,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -338,11 +338,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -388,11 +388,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Information"
|
msgstr "Information"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -571,8 +571,8 @@ msgstr ""
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr "Profil, der anvendes af \"msmtp\" til banIP-meddelelses-e-mails."
|
msgstr "Profil, der anvendes af \"msmtp\" til banIP-meddelelses-e-mails."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -615,11 +615,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr "Resultat"
|
msgstr "Resultat"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -631,7 +631,7 @@ msgstr "Kør flag"
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr "Kør oplysninger"
|
msgstr "Kør oplysninger"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -812,11 +812,11 @@ msgstr "Udløserforsinkelse"
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -825,12 +825,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -860,7 +861,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -182,7 +182,7 @@ msgstr "Ketten-/Set-Einstellungen"
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -204,7 +204,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr "Länder"
|
msgstr "Länder"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -224,7 +224,7 @@ msgstr "IPs deduplizieren"
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Beschreibung"
|
msgstr "Beschreibung"
|
||||||
|
|
||||||
|
@ -244,7 +244,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr "Während des Downloads keine SSL-Serverzertifikate überprüfen."
|
msgstr "Während des Downloads keine SSL-Serverzertifikate überprüfen."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -304,8 +304,8 @@ msgstr "Anzahl der Elemente"
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr "Elemente"
|
msgstr "Elemente"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -333,7 +333,7 @@ msgstr "Aktiviert die IPv6-Unterstützung."
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr "Verfallszeit für automatisch hinzugefügte Mitglieder der Sperrliste."
|
msgstr "Verfallszeit für automatisch hinzugefügte Mitglieder der Sperrliste."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -341,7 +341,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr "Feed-Auswahl"
|
msgstr "Feed-Auswahl"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -349,11 +349,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr "Firewall-Protokoll"
|
msgstr "Firewall-Protokoll"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -401,11 +401,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informationen"
|
msgstr "Informationen"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -591,8 +591,8 @@ msgstr "Verarbeitungsprotokoll"
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr "Von 'msmtp' verwendetes Profil für banIP-Benachrichtigungs-E-Mails."
|
msgstr "Von 'msmtp' verwendetes Profil für banIP-Benachrichtigungs-E-Mails."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -638,11 +638,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr "Ergebnis"
|
msgstr "Ergebnis"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -654,7 +654,7 @@ msgstr "Laufzeit-Flags"
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr "Informationen zur Ausführung"
|
msgstr "Informationen zur Ausführung"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -859,11 +859,11 @@ msgstr "Verzögerung der Trigger-Bedingung"
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -872,12 +872,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr "Änderungen können nicht gespeichert werden: %s"
|
msgstr "Änderungen können nicht gespeichert werden: %s"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -907,7 +908,7 @@ msgstr "WAN-Input (Pakete)"
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr "WAN-Input-Kette"
|
msgstr "WAN-Input-Kette"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -197,7 +197,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -215,7 +215,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Περιγραφή"
|
msgstr "Περιγραφή"
|
||||||
|
|
||||||
|
@ -233,7 +233,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -293,8 +293,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -322,7 +322,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -330,7 +330,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -338,11 +338,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -388,11 +388,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -570,8 +570,8 @@ msgstr ""
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -614,11 +614,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -630,7 +630,7 @@ msgstr ""
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -811,11 +811,11 @@ msgstr ""
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -824,12 +824,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -859,7 +860,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -197,7 +197,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -215,7 +215,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -233,7 +233,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -293,8 +293,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -322,7 +322,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -330,7 +330,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -338,11 +338,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -388,11 +388,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -570,8 +570,8 @@ msgstr ""
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -614,11 +614,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -630,7 +630,7 @@ msgstr ""
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -811,11 +811,11 @@ msgstr ""
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -824,12 +824,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -859,7 +860,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -190,7 +190,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -207,7 +207,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr "Países"
|
msgstr "Países"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -225,7 +225,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Descripción"
|
msgstr "Descripción"
|
||||||
|
|
||||||
|
@ -243,7 +243,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr "No verificar los certificados SSL del servidor durante la descarga."
|
msgstr "No verificar los certificados SSL del servidor durante la descarga."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -303,8 +303,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -332,7 +332,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -340,7 +340,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -348,11 +348,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -398,11 +398,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Información"
|
msgstr "Información"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -583,8 +583,8 @@ msgstr ""
|
||||||
"Perfil utilizado por 'msmtp' para correos electrónicos de notificación de "
|
"Perfil utilizado por 'msmtp' para correos electrónicos de notificación de "
|
||||||
"banIP."
|
"banIP."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -627,11 +627,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr "Resultado"
|
msgstr "Resultado"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -643,7 +643,7 @@ msgstr "Ejecutar banderas"
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr "Ejecutar información"
|
msgstr "Ejecutar información"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -825,11 +825,11 @@ msgstr "Retraso de disparo"
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -838,12 +838,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -873,7 +874,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -197,7 +197,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr "Maat"
|
msgstr "Maat"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -215,7 +215,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Kuvaus"
|
msgstr "Kuvaus"
|
||||||
|
|
||||||
|
@ -233,7 +233,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr "Älä tarkista SSL-palvelinvarmenteita latauksen aikana."
|
msgstr "Älä tarkista SSL-palvelinvarmenteita latauksen aikana."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -293,8 +293,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -322,7 +322,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -330,7 +330,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -338,11 +338,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -388,11 +388,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -570,8 +570,8 @@ msgstr ""
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -614,11 +614,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr "Tulos"
|
msgstr "Tulos"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -630,7 +630,7 @@ msgstr ""
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -811,11 +811,11 @@ msgstr ""
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -824,12 +824,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -859,7 +860,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -197,7 +197,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr "Pays"
|
msgstr "Pays"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -215,7 +215,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Description"
|
msgstr "Description"
|
||||||
|
|
||||||
|
@ -234,7 +234,7 @@ msgid "Don't check SSL server certificates during download."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ne pas vérifier les certificats SSL du serveur pendant le téléchargement."
|
"Ne pas vérifier les certificats SSL du serveur pendant le téléchargement."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -294,8 +294,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -323,7 +323,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -331,7 +331,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -339,11 +339,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -389,11 +389,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Information"
|
msgstr "Information"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -575,8 +575,8 @@ msgstr ""
|
||||||
"Profil utilisé par 'msmtp' pour les courriel de notification de bannissement "
|
"Profil utilisé par 'msmtp' pour les courriel de notification de bannissement "
|
||||||
"IP."
|
"IP."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -619,11 +619,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr "Résultat"
|
msgstr "Résultat"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -635,7 +635,7 @@ msgstr "Drapeaux d'exécution"
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr "Informations sur l’exécution"
|
msgstr "Informations sur l’exécution"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -817,11 +817,11 @@ msgstr "Délai de déclenchement"
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -830,12 +830,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -865,7 +866,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -181,7 +181,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -198,7 +198,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -216,7 +216,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "תיאור"
|
msgstr "תיאור"
|
||||||
|
|
||||||
|
@ -234,7 +234,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -294,8 +294,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -323,7 +323,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -331,7 +331,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -339,11 +339,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -389,11 +389,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -571,8 +571,8 @@ msgstr ""
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -615,11 +615,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -631,7 +631,7 @@ msgstr ""
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -812,11 +812,11 @@ msgstr ""
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -825,12 +825,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -860,7 +861,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -174,7 +174,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -191,7 +191,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -209,7 +209,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -227,7 +227,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -287,8 +287,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -316,7 +316,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -324,7 +324,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -332,11 +332,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -382,11 +382,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -564,8 +564,8 @@ msgstr ""
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -608,11 +608,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -624,7 +624,7 @@ msgstr ""
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -805,11 +805,11 @@ msgstr ""
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -818,12 +818,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -853,7 +854,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -197,7 +197,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr "Országok"
|
msgstr "Országok"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -215,7 +215,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Leírás"
|
msgstr "Leírás"
|
||||||
|
|
||||||
|
@ -233,7 +233,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -294,8 +294,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -323,7 +323,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -331,7 +331,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -339,11 +339,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -389,11 +389,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Információ"
|
msgstr "Információ"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -571,8 +571,8 @@ msgstr ""
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -615,11 +615,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr "Eredmény"
|
msgstr "Eredmény"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -631,7 +631,7 @@ msgstr ""
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -812,11 +812,11 @@ msgstr "Aktiváló késleltetése"
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -825,12 +825,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -860,7 +861,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -197,7 +197,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -215,7 +215,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Descrizione"
|
msgstr "Descrizione"
|
||||||
|
|
||||||
|
@ -233,7 +233,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr "Non controllare i certificati del server SSL durante il download."
|
msgstr "Non controllare i certificati del server SSL durante il download."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -293,8 +293,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -322,7 +322,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -330,7 +330,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -338,11 +338,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -388,11 +388,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informazioni"
|
msgstr "Informazioni"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -570,8 +570,8 @@ msgstr ""
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -614,11 +614,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr "Risultato"
|
msgstr "Risultato"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -630,7 +630,7 @@ msgstr "Avvia Flags"
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -811,11 +811,11 @@ msgstr ""
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -824,12 +824,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -859,7 +860,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -197,7 +197,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr "国"
|
msgstr "国"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -215,7 +215,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "説明"
|
msgstr "説明"
|
||||||
|
|
||||||
|
@ -233,7 +233,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -293,8 +293,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -322,7 +322,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -330,7 +330,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -338,11 +338,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -388,11 +388,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "情報"
|
msgstr "情報"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -570,8 +570,8 @@ msgstr ""
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -614,11 +614,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr "結果"
|
msgstr "結果"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -630,7 +630,7 @@ msgstr "実行フラグ"
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr "実行情報"
|
msgstr "実行情報"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -811,11 +811,11 @@ msgstr "トリガ遅延"
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -824,12 +824,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -859,7 +860,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -181,7 +181,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -198,7 +198,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -216,7 +216,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "설명"
|
msgstr "설명"
|
||||||
|
|
||||||
|
@ -234,7 +234,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -294,8 +294,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -323,7 +323,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -331,7 +331,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -339,11 +339,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -389,11 +389,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "정보"
|
msgstr "정보"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -571,8 +571,8 @@ msgstr ""
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -615,11 +615,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -631,7 +631,7 @@ msgstr ""
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -812,11 +812,11 @@ msgstr ""
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -825,12 +825,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -860,7 +861,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -197,7 +197,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -215,7 +215,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "वर्णन"
|
msgstr "वर्णन"
|
||||||
|
|
||||||
|
@ -233,7 +233,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -293,8 +293,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -322,7 +322,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -330,7 +330,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -338,11 +338,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -388,11 +388,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -570,8 +570,8 @@ msgstr ""
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -614,11 +614,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -630,7 +630,7 @@ msgstr ""
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -811,11 +811,11 @@ msgstr ""
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -824,12 +824,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -859,7 +860,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -197,7 +197,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -215,7 +215,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Keterangan"
|
msgstr "Keterangan"
|
||||||
|
|
||||||
|
@ -233,7 +233,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -293,8 +293,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -322,7 +322,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -330,7 +330,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -338,11 +338,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -388,11 +388,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -570,8 +570,8 @@ msgstr ""
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -614,11 +614,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -630,7 +630,7 @@ msgstr ""
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -811,11 +811,11 @@ msgstr ""
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -824,12 +824,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -859,7 +860,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -197,7 +197,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -215,7 +215,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Beskrivelse"
|
msgstr "Beskrivelse"
|
||||||
|
|
||||||
|
@ -233,7 +233,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -293,8 +293,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -322,7 +322,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -330,7 +330,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -338,11 +338,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -388,11 +388,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Info"
|
msgstr "Info"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -570,8 +570,8 @@ msgstr ""
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -614,11 +614,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr "Resultat"
|
msgstr "Resultat"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -631,7 +631,7 @@ msgstr "Kjøringsflagg"
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -812,11 +812,11 @@ msgstr "Utløserforsinkelse"
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -825,12 +825,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -860,7 +861,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -188,7 +188,7 @@ msgstr ""
|
||||||
"Wijzigingen op dit tabblad hebben een herstart van de banIP-service nodig om "
|
"Wijzigingen op dit tabblad hebben een herstart van de banIP-service nodig om "
|
||||||
"van kracht te worden."
|
"van kracht te worden."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -210,7 +210,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr "Landen"
|
msgstr "Landen"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -230,7 +230,7 @@ msgstr "IP's ontdubbelen"
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -250,7 +250,7 @@ msgstr "Domein opzoeken"
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr "Tijdens download niet de SSL server certificaten controleren."
|
msgstr "Tijdens download niet de SSL server certificaten controleren."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -310,8 +310,8 @@ msgstr "Aantal elementen"
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr "Elementen"
|
msgstr "Elementen"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -341,7 +341,7 @@ msgstr "Schakelt IPv6-ondersteuning in."
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr "Vervaltijd voor automatisch toegevoegde leden van de blokkeerlijstset."
|
msgstr "Vervaltijd voor automatisch toegevoegde leden van de blokkeerlijstset."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -349,7 +349,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr "Feed selectie"
|
msgstr "Feed selectie"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -357,11 +357,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr "Firewall-logboek"
|
msgstr "Firewall-logboek"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -409,11 +409,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informatie"
|
msgstr "Informatie"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -599,8 +599,8 @@ msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Profiel gebruikt voor 'msmtp' voor banIP E-Mail berichten/notificaties."
|
"Profiel gebruikt voor 'msmtp' voor banIP E-Mail berichten/notificaties."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -645,11 +645,11 @@ msgstr "Beperk de internettoegang van/tot een klein aantal beveiligde IP's."
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr "Resultaat"
|
msgstr "Resultaat"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -661,7 +661,7 @@ msgstr "Vlaggen uitvoeren"
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr "Informatie uitvoeren"
|
msgstr "Informatie uitvoeren"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -862,11 +862,11 @@ msgstr "Trigger vertraging"
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr "Activeer actie op ifup-interfacegebeurtenissen."
|
msgstr "Activeer actie op ifup-interfacegebeurtenissen."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -875,12 +875,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr "Kan wijzigingen niet opslaan: %s"
|
msgstr "Kan wijzigingen niet opslaan: %s"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -910,7 +911,7 @@ msgstr "WAN-invoer (pakketten)"
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr "WAN-invoer reeks"
|
msgstr "WAN-invoer reeks"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -192,7 +192,7 @@ msgstr ""
|
||||||
"Zmiany na tej karcie wymagają ponownego uruchomienia usługi banIP, aby "
|
"Zmiany na tej karcie wymagają ponownego uruchomienia usługi banIP, aby "
|
||||||
"zostały zastosowane."
|
"zostały zastosowane."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr "Wyczyść źródła niestandardowe"
|
msgstr "Wyczyść źródła niestandardowe"
|
||||||
|
|
||||||
|
@ -214,7 +214,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr "Kraje"
|
msgstr "Kraje"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr "Edytor źródeł niestandardowych"
|
msgstr "Edytor źródeł niestandardowych"
|
||||||
|
|
||||||
|
@ -234,7 +234,7 @@ msgstr "Deduplikacja adresów IP"
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr "Domyślne zasady blokowania"
|
msgstr "Domyślne zasady blokowania"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Opis"
|
msgstr "Opis"
|
||||||
|
|
||||||
|
@ -254,7 +254,7 @@ msgstr "Wyszukiwanie domen"
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr "Nie sprawdzaj certyfikatów SSL serwera podczas pobierania."
|
msgstr "Nie sprawdzaj certyfikatów SSL serwera podczas pobierania."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr "Pobierz źródła niestandardowe"
|
msgstr "Pobierz źródła niestandardowe"
|
||||||
|
|
||||||
|
@ -314,8 +314,8 @@ msgstr "Liczba elementów"
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr "Elementy"
|
msgstr "Elementy"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr "Puste pole jest niedozwolone"
|
msgstr "Puste pole jest niedozwolone"
|
||||||
|
|
||||||
|
@ -345,7 +345,7 @@ msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Czas wygaśnięcia automatycznie dodanych członków zestawu listy zablokowanych."
|
"Czas wygaśnięcia automatycznie dodanych członków zestawu listy zablokowanych."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr "Nazwa źródła"
|
msgstr "Nazwa źródła"
|
||||||
|
|
||||||
|
@ -353,7 +353,7 @@ msgstr "Nazwa źródła"
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr "Wybór źródeł"
|
msgstr "Wybór źródeł"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr "Wypełnij źródła niestandardowe"
|
msgstr "Wypełnij źródła niestandardowe"
|
||||||
|
|
||||||
|
@ -361,11 +361,11 @@ msgstr "Wypełnij źródła niestandardowe"
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr "Dziennik zapory"
|
msgstr "Dziennik zapory"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr "Flaga"
|
msgstr "Flaga"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr "Flaga jest nieobsługiwana"
|
msgstr "Flaga jest nieobsługiwana"
|
||||||
|
|
||||||
|
@ -413,11 +413,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informacje"
|
msgstr "Informacje"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr "Nieprawidłowe znaki"
|
msgstr "Nieprawidłowe znaki"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr "Nieprawidłowe wartości wejściowe, nie można zapisać zmian."
|
msgstr "Nieprawidłowe wartości wejściowe, nie można zapisać zmian."
|
||||||
|
|
||||||
|
@ -608,8 +608,8 @@ msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Profil używany przez \"msmtp\" dla wiadomości e-mail z powiadomieniem banIP."
|
"Profil używany przez \"msmtp\" dla wiadomości e-mail z powiadomieniem banIP."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr "Format protokołu/adresu URL jest nieobsługiwany"
|
msgstr "Format protokołu/adresu URL jest nieobsługiwany"
|
||||||
|
|
||||||
|
@ -655,11 +655,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr "Wynik"
|
msgstr "Wynik"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr "Regułav4"
|
msgstr "Regułav4"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr "Regułav6"
|
msgstr "Regułav6"
|
||||||
|
|
||||||
|
@ -671,7 +671,7 @@ msgstr "Flagi uruchomieniowe"
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr "Informacje uruchomieniowe"
|
msgstr "Informacje uruchomieniowe"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr "Zapisz źródła niestandardowe"
|
msgstr "Zapisz źródła niestandardowe"
|
||||||
|
|
||||||
|
@ -872,11 +872,11 @@ msgstr "Opóźnienie wyzwalacza"
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr "Wyzwalanie akcji przy zdarzeniach interfejsu ifup."
|
msgstr "Wyzwalanie akcji przy zdarzeniach interfejsu ifup."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr "URLv4"
|
msgstr "URLv4"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr "URLv6"
|
msgstr "URLv6"
|
||||||
|
|
||||||
|
@ -885,12 +885,13 @@ msgstr "URLv6"
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr "Nie można zapisać modyfikacji: %s"
|
msgstr "Nie można zapisać modyfikacji: %s"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr "Prześlij źródła niestandardowe"
|
msgstr "Prześlij źródła niestandardowe"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr "Przesyłanie pliku źródeł niestandardowych nie powiodło się."
|
msgstr "Przesyłanie pliku źródeł niestandardowych nie powiodło się."
|
||||||
|
|
||||||
|
@ -920,7 +921,7 @@ msgstr "Wejście WAN (pakiety)"
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr "Łańcuch wejścia WAN"
|
msgstr "Łańcuch wejścia WAN"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -191,7 +191,7 @@ msgstr ""
|
||||||
"As alterações nesta guia precisam de uma reinicialização do serviço banIP "
|
"As alterações nesta guia precisam de uma reinicialização do serviço banIP "
|
||||||
"para entrar em vigor."
|
"para entrar em vigor."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -213,7 +213,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr "Países"
|
msgstr "Países"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -233,7 +233,7 @@ msgstr "Eliminar IPs duplicados"
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Descrição"
|
msgstr "Descrição"
|
||||||
|
|
||||||
|
@ -253,7 +253,7 @@ msgstr "Busca por domínio"
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr "Não verificar os certificados de SSL do servidor durante a descarrega."
|
msgstr "Não verificar os certificados de SSL do servidor durante a descarrega."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -313,8 +313,8 @@ msgstr "Contagem dos elementos"
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr "Elementos"
|
msgstr "Elementos"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -345,7 +345,7 @@ msgstr ""
|
||||||
"Tempo de expiração para os membros do conjunto de lista de bloqueio que "
|
"Tempo de expiração para os membros do conjunto de lista de bloqueio que "
|
||||||
"foram adicionados automaticamente."
|
"foram adicionados automaticamente."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -353,7 +353,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr "Seleção do feed"
|
msgstr "Seleção do feed"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -361,11 +361,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr "Registo do firewall"
|
msgstr "Registo do firewall"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -414,11 +414,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informação"
|
msgstr "Informação"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -604,8 +604,8 @@ msgstr "Registo de processamento"
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr "O perfil usado pelo 'msmtp' para os e-mails de notificação do banIP."
|
msgstr "O perfil usado pelo 'msmtp' para os e-mails de notificação do banIP."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -651,11 +651,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr "Resultado"
|
msgstr "Resultado"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -667,7 +667,7 @@ msgstr "Flags de Execução"
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr "Informações de Execução"
|
msgstr "Informações de Execução"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -873,11 +873,11 @@ msgstr "Atraso do Gatilho"
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr "Acione a ação nos eventos da interface ifup."
|
msgstr "Acione a ação nos eventos da interface ifup."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -886,12 +886,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr "Não foi possível salvar as alterações: %s"
|
msgstr "Não foi possível salvar as alterações: %s"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -921,7 +922,7 @@ msgstr "WAN-Input (pacotes)"
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr "Cadeia WAN-Input"
|
msgstr "Cadeia WAN-Input"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -193,7 +193,7 @@ msgstr ""
|
||||||
"As alterações nesta guia precisam de uma reinicialização do serviço banIP "
|
"As alterações nesta guia precisam de uma reinicialização do serviço banIP "
|
||||||
"para entrar em vigor."
|
"para entrar em vigor."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr "Limpar os feeds personalizados"
|
msgstr "Limpar os feeds personalizados"
|
||||||
|
|
||||||
|
@ -215,7 +215,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr "Países"
|
msgstr "Países"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr "Editor do feed personalizado"
|
msgstr "Editor do feed personalizado"
|
||||||
|
|
||||||
|
@ -235,7 +235,7 @@ msgstr "Eliminar IPs duplicados"
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr "Política de bloqueio padrão"
|
msgstr "Política de bloqueio padrão"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Descrição"
|
msgstr "Descrição"
|
||||||
|
|
||||||
|
@ -255,7 +255,7 @@ msgstr "Busca por domínio"
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr "Não verifique os certificados do servidor SSL durante o download."
|
msgstr "Não verifique os certificados do servidor SSL durante o download."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr "Baixar feeds personalizados"
|
msgstr "Baixar feeds personalizados"
|
||||||
|
|
||||||
|
@ -315,8 +315,8 @@ msgstr "Contagem dos elementos"
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr "Elementos"
|
msgstr "Elementos"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr "Campo vazio não permitido"
|
msgstr "Campo vazio não permitido"
|
||||||
|
|
||||||
|
@ -347,7 +347,7 @@ msgstr ""
|
||||||
"Tempo de expiração para os membros do conjunto de lista de bloqueio que "
|
"Tempo de expiração para os membros do conjunto de lista de bloqueio que "
|
||||||
"foram adicionados automaticamente."
|
"foram adicionados automaticamente."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr "Nome do feed"
|
msgstr "Nome do feed"
|
||||||
|
|
||||||
|
@ -355,7 +355,7 @@ msgstr "Nome do feed"
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr "Seleção do feed"
|
msgstr "Seleção do feed"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr "Preencher os feeds personalizados"
|
msgstr "Preencher os feeds personalizados"
|
||||||
|
|
||||||
|
@ -363,11 +363,11 @@ msgstr "Preencher os feeds personalizados"
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr "Registro do firewall"
|
msgstr "Registro do firewall"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr "Sinalizador"
|
msgstr "Sinalizador"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr "Sinalizador não suportado"
|
msgstr "Sinalizador não suportado"
|
||||||
|
|
||||||
|
@ -416,11 +416,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informações"
|
msgstr "Informações"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr "Caracteres inválidos"
|
msgstr "Caracteres inválidos"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr "Valores inválidos da entrada, não é possível salvar as alterações."
|
msgstr "Valores inválidos da entrada, não é possível salvar as alterações."
|
||||||
|
|
||||||
|
@ -609,8 +609,8 @@ msgstr "Registro de processamento"
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr "O perfil usado pelo 'msmtp' para os e-mails de notificação do banIP."
|
msgstr "O perfil usado pelo 'msmtp' para os e-mails de notificação do banIP."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr "Formato de protocolo/URL não suportado"
|
msgstr "Formato de protocolo/URL não suportado"
|
||||||
|
|
||||||
|
@ -656,11 +656,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr "Resultado"
|
msgstr "Resultado"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr "Rulev4"
|
msgstr "Rulev4"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr "Rulev6"
|
msgstr "Rulev6"
|
||||||
|
|
||||||
|
@ -672,7 +672,7 @@ msgstr "Executar Flags"
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr "Informações de Execução"
|
msgstr "Informações de Execução"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr "Salvar os feeds personalizados"
|
msgstr "Salvar os feeds personalizados"
|
||||||
|
|
||||||
|
@ -878,11 +878,11 @@ msgstr "Gatilho de Atraso"
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr "Acione a ação nos eventos da interface ifup."
|
msgstr "Acione a ação nos eventos da interface ifup."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr "URLv4"
|
msgstr "URLv4"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr "URLv6"
|
msgstr "URLv6"
|
||||||
|
|
||||||
|
@ -891,12 +891,13 @@ msgstr "URLv6"
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr "Não foi possível salvar as alterações: %s"
|
msgstr "Não foi possível salvar as alterações: %s"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr "Fazer upload dos feeds personalizados"
|
msgstr "Fazer upload dos feeds personalizados"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr "O upload do arquivo com os feeds personalizados falhou."
|
msgstr "O upload do arquivo com os feeds personalizados falhou."
|
||||||
|
|
||||||
|
@ -926,7 +927,7 @@ msgstr "WAN-Input (pacotes)"
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr "Cadeia WAN-Input"
|
msgstr "Cadeia WAN-Input"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -190,7 +190,7 @@ msgstr ""
|
||||||
"Modificările din această filă necesită o repornire a serviciului banIP "
|
"Modificările din această filă necesită o repornire a serviciului banIP "
|
||||||
"pentru a intra în vigoare."
|
"pentru a intra în vigoare."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -212,7 +212,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr "Țări"
|
msgstr "Țări"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -232,7 +232,7 @@ msgstr "Deduplicați IP-uri"
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Descriere"
|
msgstr "Descriere"
|
||||||
|
|
||||||
|
@ -252,7 +252,7 @@ msgstr "Căutare domeniu"
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr "Nu verificați certificatele serverului SSL în timpul descărcării."
|
msgstr "Nu verificați certificatele serverului SSL în timpul descărcării."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -312,8 +312,8 @@ msgstr "Număr de elemente"
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr "Elemente"
|
msgstr "Elemente"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -344,7 +344,7 @@ msgstr ""
|
||||||
"Timpul de expirare pentru membrii setului de liste de blocare adăugate "
|
"Timpul de expirare pentru membrii setului de liste de blocare adăugate "
|
||||||
"automat."
|
"automat."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -352,7 +352,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr "Selecția Feed"
|
msgstr "Selecția Feed"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -360,11 +360,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr "Jurnal Firewall"
|
msgstr "Jurnal Firewall"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -412,11 +412,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informație"
|
msgstr "Informație"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -602,8 +602,8 @@ msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Profilul utilizat de 'msmtp' pentru mesajele electronice de notificare banIP."
|
"Profilul utilizat de 'msmtp' pentru mesajele electronice de notificare banIP."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -650,11 +650,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr "Rezultat"
|
msgstr "Rezultat"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -666,7 +666,7 @@ msgstr "Fixați indicatoarele"
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr "Informații despre cursă"
|
msgstr "Informații despre cursă"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -868,11 +868,11 @@ msgstr "Intârzierea declanșării"
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr "Acțiune de declanșare a evenimentelor de interfață ifup."
|
msgstr "Acțiune de declanșare a evenimentelor de interfață ifup."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -881,12 +881,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr "Imposibilitatea de a salva modificările: %s"
|
msgstr "Imposibilitatea de a salva modificările: %s"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -916,7 +917,7 @@ msgstr "WAN-Input (pachete)"
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr "Chain WAN-Input"
|
msgstr "Chain WAN-Input"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -194,7 +194,7 @@ msgstr ""
|
||||||
"Для вступления в силу изменений на этой вкладке требуется перезапуск службы "
|
"Для вступления в силу изменений на этой вкладке требуется перезапуск службы "
|
||||||
"banIP."
|
"banIP."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr "Очистить пользовательские каналы"
|
msgstr "Очистить пользовательские каналы"
|
||||||
|
|
||||||
|
@ -216,7 +216,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr "Страны"
|
msgstr "Страны"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr "Пользовательский редактор каналов"
|
msgstr "Пользовательский редактор каналов"
|
||||||
|
|
||||||
|
@ -236,7 +236,7 @@ msgstr "Дублирование IP-адресов"
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr "Политика блокировки по умолчанию"
|
msgstr "Политика блокировки по умолчанию"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Описание"
|
msgstr "Описание"
|
||||||
|
|
||||||
|
@ -256,7 +256,7 @@ msgstr "Поиск домена"
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr "Не проверять SSL сертификаты сервера во время загрузки."
|
msgstr "Не проверять SSL сертификаты сервера во время загрузки."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr "Скачать пользовательские каналы"
|
msgstr "Скачать пользовательские каналы"
|
||||||
|
|
||||||
|
@ -316,8 +316,8 @@ msgstr "Количество элементов"
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr "Элементы"
|
msgstr "Элементы"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr "Пустое поле не допускается"
|
msgstr "Пустое поле не допускается"
|
||||||
|
|
||||||
|
@ -347,7 +347,7 @@ msgstr ""
|
||||||
"Время истечения срока действия для автоматически добавляемых членов набора "
|
"Время истечения срока действия для автоматически добавляемых членов набора "
|
||||||
"списков блокировки."
|
"списков блокировки."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr "Название канала"
|
msgstr "Название канала"
|
||||||
|
|
||||||
|
@ -355,7 +355,7 @@ msgstr "Название канала"
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr "Выбор канала"
|
msgstr "Выбор канала"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr "Заполнить пользовательские каналы"
|
msgstr "Заполнить пользовательские каналы"
|
||||||
|
|
||||||
|
@ -363,11 +363,11 @@ msgstr "Заполнить пользовательские каналы"
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr "Журнал Firewall"
|
msgstr "Журнал Firewall"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr "Флаг"
|
msgstr "Флаг"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr "Флаг не поддерживается"
|
msgstr "Флаг не поддерживается"
|
||||||
|
|
||||||
|
@ -415,11 +415,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Информация"
|
msgstr "Информация"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr "Недопустимые символы"
|
msgstr "Недопустимые символы"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr "Недопустимые входные значения, невозможно сохранить изменения."
|
msgstr "Недопустимые входные значения, невозможно сохранить изменения."
|
||||||
|
|
||||||
|
@ -611,8 +611,8 @@ msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Профиль, используемый 'msmtp' для электронной почты с уведомлением banIP."
|
"Профиль, используемый 'msmtp' для электронной почты с уведомлением banIP."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr "Формат протокола/URL не поддерживается"
|
msgstr "Формат протокола/URL не поддерживается"
|
||||||
|
|
||||||
|
@ -658,11 +658,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr "Результат"
|
msgstr "Результат"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr "Rulev4"
|
msgstr "Rulev4"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr "Rulev6"
|
msgstr "Rulev6"
|
||||||
|
|
||||||
|
@ -674,7 +674,7 @@ msgstr "Флаги запуска"
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr "Информация о запуске"
|
msgstr "Информация о запуске"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr "Сохранить пользовательские каналы"
|
msgstr "Сохранить пользовательские каналы"
|
||||||
|
|
||||||
|
@ -875,11 +875,11 @@ msgstr "Задержка запуска"
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr "Действие, выполняемое при поднятии интерфейса (ifup)."
|
msgstr "Действие, выполняемое при поднятии интерфейса (ifup)."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr "URLv4"
|
msgstr "URLv4"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr "URLv6"
|
msgstr "URLv6"
|
||||||
|
|
||||||
|
@ -888,12 +888,13 @@ msgstr "URLv6"
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr "Невозможно сохранить изменения: %s"
|
msgstr "Невозможно сохранить изменения: %s"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr "Загрузить пользовательские каналы"
|
msgstr "Загрузить пользовательские каналы"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr "Загрузка файла пользовательского канала не удалась."
|
msgstr "Загрузка файла пользовательского канала не удалась."
|
||||||
|
|
||||||
|
@ -923,7 +924,7 @@ msgstr "WAN-Input (пакеты)"
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr "Цепочка WAN-Input"
|
msgstr "Цепочка WAN-Input"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
@ -934,10 +935,10 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"С помощью этого редактора вы можете загрузить свой локальный файл "
|
"С помощью этого редактора вы можете загрузить свой локальный файл "
|
||||||
"пользовательских каналов или заполнить начальный файл (копия 1:1 версии, "
|
"пользовательских каналов или заполнить начальный файл (копия 1:1 версии, "
|
||||||
"поставляемой с пакетом). Файл находится по адресу '/etc/banip/"
|
"поставляемой с пакетом). Файл находится по адресу '/etc/banip/banip.custom."
|
||||||
"banip.custom.feeds'. Затем вы можете редактировать этот файл, удалять "
|
"feeds'. Затем вы можете редактировать этот файл, удалять записи, добавлять "
|
||||||
"записи, добавлять новые или делать локальную резервную копию. Чтобы "
|
"новые или делать локальную резервную копию. Чтобы вернуться исходной версии, "
|
||||||
"вернуться исходной версии, загрузите пустой файл (не удаляйте его!)."
|
"загрузите пустой файл (не удаляйте его!)."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||||
msgid "alert"
|
msgid "alert"
|
||||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -197,7 +197,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -215,7 +215,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Popis"
|
msgstr "Popis"
|
||||||
|
|
||||||
|
@ -233,7 +233,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -293,8 +293,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -322,7 +322,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -330,7 +330,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -338,11 +338,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -388,11 +388,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -570,8 +570,8 @@ msgstr ""
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -614,11 +614,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -630,7 +630,7 @@ msgstr ""
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -811,11 +811,11 @@ msgstr ""
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -824,12 +824,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -859,7 +860,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -197,7 +197,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -215,7 +215,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Beskrivning"
|
msgstr "Beskrivning"
|
||||||
|
|
||||||
|
@ -233,7 +233,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -293,8 +293,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -322,7 +322,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -330,7 +330,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -338,11 +338,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -388,11 +388,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -570,8 +570,8 @@ msgstr ""
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -614,11 +614,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr "Resultat"
|
msgstr "Resultat"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -630,7 +630,7 @@ msgstr "Förflaggor"
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -811,11 +811,11 @@ msgstr ""
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -824,12 +824,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -859,7 +860,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -197,7 +197,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -215,7 +215,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -233,7 +233,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -293,8 +293,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -322,7 +322,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -330,7 +330,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -338,11 +338,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -388,11 +388,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -570,8 +570,8 @@ msgstr ""
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -614,11 +614,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -630,7 +630,7 @@ msgstr ""
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -811,11 +811,11 @@ msgstr ""
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -824,12 +824,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -859,7 +860,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -171,7 +171,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -188,7 +188,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -206,7 +206,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -224,7 +224,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -284,8 +284,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -313,7 +313,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -321,7 +321,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -329,11 +329,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -379,11 +379,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -561,8 +561,8 @@ msgstr ""
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -605,11 +605,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -621,7 +621,7 @@ msgstr ""
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -802,11 +802,11 @@ msgstr ""
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -815,12 +815,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -850,7 +851,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -197,7 +197,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr "Ülkeler"
|
msgstr "Ülkeler"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -215,7 +215,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Açıklama"
|
msgstr "Açıklama"
|
||||||
|
|
||||||
|
@ -233,7 +233,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr "İndirme sırasında SSL sunucu sertifikalarını kontrol etme."
|
msgstr "İndirme sırasında SSL sunucu sertifikalarını kontrol etme."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -293,8 +293,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -322,7 +322,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -330,7 +330,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -338,11 +338,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -388,11 +388,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Bilgi"
|
msgstr "Bilgi"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -570,8 +570,8 @@ msgstr ""
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr "BanIP bildirim e-postaları için 'msmtp' tarafından kullanılan profil."
|
msgstr "BanIP bildirim e-postaları için 'msmtp' tarafından kullanılan profil."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -614,11 +614,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr "Sonuç"
|
msgstr "Sonuç"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -630,7 +630,7 @@ msgstr "Bayrakları Çalıştır"
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr "Çalıştırma Bilgileri"
|
msgstr "Çalıştırma Bilgileri"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -811,11 +811,11 @@ msgstr "Tetikleme Gecikmesi"
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -824,12 +824,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -859,7 +860,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -181,7 +181,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -198,7 +198,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -216,7 +216,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Опис"
|
msgstr "Опис"
|
||||||
|
|
||||||
|
@ -234,7 +234,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr "Не перевіряти SSL-сертифікати сервера під час завантаження."
|
msgstr "Не перевіряти SSL-сертифікати сервера під час завантаження."
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -294,8 +294,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -323,7 +323,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -331,7 +331,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -339,11 +339,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -389,11 +389,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -571,8 +571,8 @@ msgstr ""
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -615,11 +615,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr "Результат"
|
msgstr "Результат"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -631,7 +631,7 @@ msgstr "Прапорці запуску"
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -812,11 +812,11 @@ msgstr "Затримка запуску"
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -825,12 +825,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -860,7 +861,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -197,7 +197,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -215,7 +215,7 @@ msgstr ""
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Mô tả"
|
msgstr "Mô tả"
|
||||||
|
|
||||||
|
@ -233,7 +233,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -293,8 +293,8 @@ msgstr ""
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -322,7 +322,7 @@ msgstr ""
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -330,7 +330,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -338,11 +338,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -388,11 +388,11 @@ msgstr ""
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -570,8 +570,8 @@ msgstr ""
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -614,11 +614,11 @@ msgstr ""
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -630,7 +630,7 @@ msgstr ""
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -811,11 +811,11 @@ msgstr "Kích hoạt độ trễ"
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -824,12 +824,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -860,7 +861,7 @@ msgstr ""
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -180,7 +180,7 @@ msgstr "IP 链路/集合设置"
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr "此标签页上进行的更改需要重启 banIP 服务才能生效。"
|
msgstr "此标签页上进行的更改需要重启 banIP 服务才能生效。"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -200,7 +200,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr "地区"
|
msgstr "地区"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -218,7 +218,7 @@ msgstr "IP 去重"
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "描述"
|
msgstr "描述"
|
||||||
|
|
||||||
|
@ -236,7 +236,7 @@ msgstr "域名查询"
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr "下载期间不检查 SSL 服务器证书。"
|
msgstr "下载期间不检查 SSL 服务器证书。"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -296,8 +296,8 @@ msgstr "元素数量"
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr "元素"
|
msgstr "元素"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -325,7 +325,7 @@ msgstr "启用 IPv6 支持。"
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr "自动添加的黑名单集成员的过期时间。"
|
msgstr "自动添加的黑名单集成员的过期时间。"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -333,7 +333,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr "源选择"
|
msgstr "源选择"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -341,11 +341,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr "防火墙日志"
|
msgstr "防火墙日志"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -391,11 +391,11 @@ msgstr "提升打开文件的最大数目便于在加载集时处理临时分割
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "信息"
|
msgstr "信息"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -573,8 +573,8 @@ msgstr "处理日志"
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr "“msmtp”所用的 banIP 电子邮件通知配置。"
|
msgstr "“msmtp”所用的 banIP 电子邮件通知配置。"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -617,11 +617,11 @@ msgstr "限制来自/对少量安全 IP 的互联网访问。"
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr "结果"
|
msgstr "结果"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -633,7 +633,7 @@ msgstr "运行标记"
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr "运行信息"
|
msgstr "运行信息"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -818,11 +818,11 @@ msgstr "触发延时"
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr "ifup 接口事件的触发动作。"
|
msgstr "ifup 接口事件的触发动作。"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -831,12 +831,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr "无法保存更改:%s"
|
msgstr "无法保存更改:%s"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -866,7 +867,7 @@ msgstr "广域网输入(数据包)"
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr "广域网输入链"
|
msgstr "广域网输入链"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
|
@ -180,7 +180,7 @@ msgstr "IP 鏈結/集合設定"
|
||||||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
|
||||||
msgid "Clear Custom Feeds"
|
msgid "Clear Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -200,7 +200,7 @@ msgstr ""
|
||||||
msgid "Countries"
|
msgid "Countries"
|
||||||
msgstr "地區"
|
msgstr "地區"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid "Custom Feed Editor"
|
msgid "Custom Feed Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -218,7 +218,7 @@ msgstr "刪除重複 IP"
|
||||||
msgid "Default Block Policy"
|
msgid "Default Block Policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "描述"
|
msgstr "描述"
|
||||||
|
|
||||||
|
@ -236,7 +236,7 @@ msgstr ""
|
||||||
msgid "Don't check SSL server certificates during download."
|
msgid "Don't check SSL server certificates during download."
|
||||||
msgstr "下載期間不檢查 SSL 伺服器證書。"
|
msgstr "下載期間不檢查 SSL 伺服器證書。"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
|
||||||
msgid "Download Custom Feeds"
|
msgid "Download Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -296,8 +296,8 @@ msgstr "元素數量"
|
||||||
msgid "Elements"
|
msgid "Elements"
|
||||||
msgstr "元素"
|
msgstr "元素"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
||||||
msgid "Empty field not allowed"
|
msgid "Empty field not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -325,7 +325,7 @@ msgstr "啟用 IPv6 支援。"
|
||||||
msgid "Expiry time for auto added blocklist set members."
|
msgid "Expiry time for auto added blocklist set members."
|
||||||
msgstr "自動加入的黑名單集合成員的過期時間。"
|
msgstr "自動加入的黑名單集合成員的過期時間。"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
|
||||||
msgid "Feed Name"
|
msgid "Feed Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -333,7 +333,7 @@ msgstr ""
|
||||||
msgid "Feed Selection"
|
msgid "Feed Selection"
|
||||||
msgstr "來源選擇"
|
msgstr "來源選擇"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
|
||||||
msgid "Fill Custom Feeds"
|
msgid "Fill Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -341,11 +341,11 @@ msgstr ""
|
||||||
msgid "Firewall Log"
|
msgid "Firewall Log"
|
||||||
msgstr "防火牆日誌"
|
msgstr "防火牆日誌"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
|
||||||
msgid "Flag"
|
msgid "Flag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
|
||||||
msgid "Flag not supported"
|
msgid "Flag not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -391,11 +391,11 @@ msgstr "提升開啟檔案的最大數目便於在載入集合時處理臨時分
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "資訊"
|
msgstr "資訊"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
|
||||||
msgid "Invalid characters"
|
msgid "Invalid characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
|
||||||
msgid "Invalid input values, unable to save modifications."
|
msgid "Invalid input values, unable to save modifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -573,8 +573,8 @@ msgstr "處理日誌"
|
||||||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||||
msgstr "「msmtp」所用的 banIP 電子郵件通知設定。"
|
msgstr "「msmtp」所用的 banIP 電子郵件通知設定。"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
|
||||||
msgid "Protocol/URL format not supported"
|
msgid "Protocol/URL format not supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -617,11 +617,11 @@ msgstr "限制來自/對少量安全 IP 的網際網路存取。"
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr "結果"
|
msgstr "結果"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
|
||||||
msgid "Rulev4"
|
msgid "Rulev4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
|
||||||
msgid "Rulev6"
|
msgid "Rulev6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -633,7 +633,7 @@ msgstr "執行旗標"
|
||||||
msgid "Run Information"
|
msgid "Run Information"
|
||||||
msgstr "執行資訊"
|
msgstr "執行資訊"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
|
||||||
msgid "Save Custom Feeds"
|
msgid "Save Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -818,11 +818,11 @@ msgstr "觸發延遲"
|
||||||
msgid "Trigger action on ifup interface events."
|
msgid "Trigger action on ifup interface events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
|
||||||
msgid "URLv4"
|
msgid "URLv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
|
||||||
msgid "URLv6"
|
msgid "URLv6"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -831,12 +831,13 @@ msgstr ""
|
||||||
msgid "Unable to save modifications: %s"
|
msgid "Unable to save modifications: %s"
|
||||||
msgstr "無法儲存變更:%s"
|
msgstr "無法儲存變更:%s"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
|
||||||
msgid "Upload Custom Feeds"
|
msgid "Upload Custom Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
|
||||||
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
|
||||||
msgid "Upload of the custom feed file failed."
|
msgid "Upload of the custom feed file failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -866,7 +867,7 @@ msgstr "廣域網路輸入 (資料封包)"
|
||||||
msgid "WAN-Input Chain"
|
msgid "WAN-Input Chain"
|
||||||
msgstr "廣域網路輸入鏈"
|
msgstr "廣域網路輸入鏈"
|
||||||
|
|
||||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
|
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this editor you can upload your local custom feed file or fill up an "
|
"With this editor you can upload your local custom feed file or fill up an "
|
||||||
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
"initial one (a 1:1 copy of the version shipped with the package). The file "
|
||||||
|
|
Loading…
Reference in a new issue