luci-app-banip: feed editor improvements

* add the ability to up-/download a local/remote JSON feed file

Signed-off-by: Dirk Brenken <dev@brenken.org>
This commit is contained in:
Dirk Brenken 2023-04-24 16:04:46 +02:00
parent 80da11720e
commit ee3f56bd02
No known key found for this signature in database
GPG key ID: 9D71CD547BFAE684
39 changed files with 1352 additions and 837 deletions

View file

@ -1,3 +1,3 @@
.cbi-input-text { .cbi-input-text {
width: 90% !important; width: 90% !important;
} }

View file

@ -30,12 +30,14 @@ const observer = new MutationObserver(function (mutations) {
label.setAttribute("style", "font-weight: bold !important; color: #595 !important;"); label.setAttribute("style", "font-weight: bold !important; color: #595 !important;");
}) })
L.resolveDefault(fs.stat('/etc/banip/banip.custom.feeds'), '').then(function (stat) { L.resolveDefault(fs.stat('/etc/banip/banip.custom.feeds'), '').then(function (stat) {
const buttons = document.querySelectorAll('#btnClear, #btnCreate, #btnSave'); const buttons = document.querySelectorAll('#btnClear, #btnCreate, #btnSave, #btnUpload, #btnDownload');
if (buttons[0] && stat.size === 0) { if (buttons[1] && buttons[2] && stat.size === 0) {
buttons[0].removeAttribute('disabled');
} else if (buttons[1] && buttons[2] && stat.size > 0) {
buttons[1].removeAttribute('disabled'); buttons[1].removeAttribute('disabled');
buttons[2].removeAttribute('disabled'); buttons[2].removeAttribute('disabled');
} else if (buttons[0] && buttons[3] && buttons[4] && stat.size > 0) {
buttons[0].removeAttribute('disabled');
buttons[3].removeAttribute('disabled');
buttons[4].removeAttribute('disabled');
} }
}); });
} }
@ -54,6 +56,31 @@ observer.observe(targetNode, observerConfig);
button handling button handling
*/ */
function handleEdit(ev) { function handleEdit(ev) {
if (ev === 'upload') {
return ui.uploadFile('/etc/banip/banip.custom.feeds').then(function () {
L.resolveDefault(fs.read_direct('/etc/banip/banip.custom.feeds', 'json'), "").then(function (res) {
if (res) {
location.reload();
} else {
fs.write('/etc/banip/banip.custom.feeds', null).then(function () {
ui.addNotification(null, E('p', _('Upload of the custom feed file failed.')), 'error');
});
}
});
}).catch(function () { });
}
if (ev === 'download') {
return fs.read_direct('/etc/banip/banip.custom.feeds', 'blob').then(function (blob) {
let url = window.URL.createObjectURL(blob),
date = new Date(),
name = 'banip.custom.feeds_%04d-%02d-%02d.json'.format(date.getFullYear(), date.getMonth() + 1, date.getDate()),
link = E('a', { 'style': 'display:none', 'href': url, 'download': name });
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
window.URL.revokeObjectURL(url);
}).catch(function () { });
}
if (ev === 'create') { if (ev === 'create') {
return fs.read_direct('/etc/banip/banip.feeds', 'json').then(function (content) { return fs.read_direct('/etc/banip/banip.feeds', 'json').then(function (content) {
fs.write('/etc/banip/banip.custom.feeds', JSON.stringify(content)).then(function () { fs.write('/etc/banip/banip.custom.feeds', JSON.stringify(content)).then(function () {
@ -104,7 +131,7 @@ function handleEdit(ev) {
} }
sumSubElements.push(nodeKeys[i].value, subElements); sumSubElements.push(nodeKeys[i].value, subElements);
} }
exportJson = JSON.stringify(sumSubElements).replace(/,{/g, ':{').replace(/^\[/g, '{').replace(/\]$/g, '}'); exportJson = JSON.stringify(sumSubElements).replace(/,{/g, ':{').replace(/^\[/, '{').replace(/\]$/, '}');
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();
}); });
@ -118,9 +145,9 @@ return view.extend({
render: function (data) { render: function (data) {
let m, s, o, feed, url_4, url_6, rule_4, rule_6, descr, flag; let m, s, o, feed, url_4, url_6, rule_4, rule_6, descr, flag;
m = new form.JSONMap(data, 'Custom Feed Editor', _('With this editor you can fill up an initial custom feed file (a 1:1 copy of the version shipped with the package). \ m = new form.JSONMap(data, 'Custom Feed Editor', _('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 is located at \'/etc/banip/banip.custom.feeds\'. \ The file is located at \'/etc/banip/banip.custom.feeds\'. \
Then you can edit this file, delete entries, add new ones, etc. To go back to the maintainers version just empty the custom feed file again (do not delete it!).')); Then you can edit this file, delete entries, add new ones or make a local backup. To go back to the maintainers version just empty the custom feed file again (do not delete it!).'));
for (let i = 0; i < Object.keys(m.data.data).length; i++) { for (let i = 0; i < Object.keys(m.data.data).length; i++) {
feed = Object.keys(m.data.data)[i]; feed = Object.keys(m.data.data)[i];
url_4 = m.data.data[feed].url_4; url_4 = m.data.data[feed].url_4;
@ -198,6 +225,24 @@ return view.extend({
s = m.section(form.NamedSection, 'global'); s = m.section(form.NamedSection, 'global');
s.render = L.bind(function () { s.render = L.bind(function () {
return E('div', { class: 'right' }, [ return E('div', { class: 'right' }, [
E('button', {
'class': 'btn cbi-button cbi-button-action',
'id': 'btnDownload',
'disabled': 'disabled',
'click': ui.createHandlerFn(this, function () {
return handleEdit('download');
})
}, [_('Download Custom Feeds')]),
'\xa0\xa0\xa0',
E('button', {
'class': 'btn cbi-button cbi-button-action',
'id': 'btnUpload',
'disabled': 'disabled',
'click': ui.createHandlerFn(this, function () {
return handleEdit('upload');
})
}, [_('Upload Custom Feeds')]),
'\xa0\xa0\xa0\xa0\xa0\xa0',
E('button', { E('button', {
'class': 'btn cbi-button cbi-button-action important', 'class': 'btn cbi-button cbi-button-action important',
'id': 'btnCreate', 'id': 'btnCreate',

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -212,7 +212,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "الوصف" msgstr "الوصف"
@ -230,6 +230,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
@ -286,8 +290,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -315,7 +319,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -323,7 +327,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -331,11 +335,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -381,11 +385,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "معلومة" msgstr "معلومة"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -563,8 +567,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -607,11 +611,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "نتيجة" msgstr "نتيجة"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -623,7 +627,7 @@ msgstr "تشغيل الإشارات"
msgid "Run Information" msgid "Run Information"
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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -804,11 +808,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -817,6 +821,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "تسجيل مطول للتصحيح" msgstr "تسجيل مطول للتصحيح"
@ -843,13 +855,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -211,7 +211,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "Описание" msgstr "Описание"
@ -229,6 +229,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Сваляй несигурно" msgstr "Сваляй несигурно"
@ -285,8 +289,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -314,7 +318,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -322,7 +326,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -330,11 +334,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -380,11 +384,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "Информация" msgstr "Информация"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -562,8 +566,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -606,11 +610,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -622,7 +626,7 @@ msgstr ""
msgid "Run Information" msgid "Run Information"
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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -803,11 +807,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -816,6 +820,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -842,13 +854,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -211,7 +211,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "" msgstr ""
@ -229,6 +229,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
@ -285,8 +289,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -314,7 +318,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -322,7 +326,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -330,11 +334,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -380,11 +384,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -562,8 +566,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -606,11 +610,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -622,7 +626,7 @@ msgstr ""
msgid "Run Information" msgid "Run Information"
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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -803,11 +807,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -816,6 +820,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -842,13 +854,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -211,7 +211,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "Descripció" msgstr "Descripció"
@ -229,6 +229,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
@ -285,8 +289,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -314,7 +318,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -322,7 +326,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -330,11 +334,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -380,11 +384,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "Informació" msgstr "Informació"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -562,8 +566,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -606,11 +610,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -622,7 +626,7 @@ msgstr ""
msgid "Run Information" msgid "Run Information"
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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -803,11 +807,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -816,6 +820,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Enregistrament detallat de depuració" msgstr "Enregistrament detallat de depuració"
@ -842,13 +854,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -211,7 +211,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "Popis" msgstr "Popis"
@ -229,6 +229,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
@ -285,8 +289,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -314,7 +318,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -322,7 +326,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -330,11 +334,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -380,11 +384,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -562,8 +566,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -606,11 +610,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -622,7 +626,7 @@ msgstr ""
msgid "Run Information" msgid "Run Information"
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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -803,11 +807,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -816,6 +820,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Podrobné protokolování ladění" msgstr "Podrobné protokolování ladění"
@ -842,13 +854,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -211,7 +211,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "" msgstr ""
@ -229,6 +229,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Download usikker" msgstr "Download usikker"
@ -285,8 +289,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -314,7 +318,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -322,7 +326,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -330,11 +334,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -380,11 +384,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "Information" msgstr "Information"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -563,8 +567,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -607,11 +611,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Resultat" msgstr "Resultat"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -623,7 +627,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:226 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -804,11 +808,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -817,6 +821,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Verbose Debug Logning" msgstr "Verbose Debug Logning"
@ -843,13 +855,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -220,7 +220,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:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "Beschreibung" msgstr "Beschreibung"
@ -240,6 +240,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Unsicher herunterladen" msgstr "Unsicher herunterladen"
@ -296,8 +300,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:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -325,7 +329,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -333,7 +337,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:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -341,11 +345,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:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -393,11 +397,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "Informationen" msgstr "Informationen"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -583,8 +587,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -630,11 +634,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Ergebnis" msgstr "Ergebnis"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -646,7 +650,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:226 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -851,11 +855,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -864,6 +868,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Ausführliche Debug-Protokollierung" msgstr "Ausführliche Debug-Protokollierung"
@ -890,13 +902,14 @@ 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:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -211,7 +211,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "Περιγραφή" msgstr "Περιγραφή"
@ -229,6 +229,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
@ -285,8 +289,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -314,7 +318,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -322,7 +326,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -330,11 +334,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -380,11 +384,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -562,8 +566,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -606,11 +610,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -622,7 +626,7 @@ msgstr ""
msgid "Run Information" msgid "Run Information"
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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -803,11 +807,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -816,6 +820,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -842,13 +854,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -211,7 +211,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "" msgstr ""
@ -229,6 +229,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
@ -285,8 +289,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -314,7 +318,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -322,7 +326,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -330,11 +334,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -380,11 +384,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -562,8 +566,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -606,11 +610,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -622,7 +626,7 @@ msgstr ""
msgid "Run Information" msgid "Run Information"
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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -803,11 +807,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -816,6 +820,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -842,13 +854,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -221,7 +221,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "Descripción" msgstr "Descripción"
@ -239,6 +239,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Descarga insegura" msgstr "Descarga insegura"
@ -295,8 +299,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -324,7 +328,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -332,7 +336,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -340,11 +344,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -390,11 +394,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "Información" msgstr "Información"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -575,8 +579,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -619,11 +623,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Resultado" msgstr "Resultado"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -635,7 +639,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:226 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -817,11 +821,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -830,6 +834,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Registro de depuración detallado" msgstr "Registro de depuración detallado"
@ -856,13 +868,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -211,7 +211,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "Kuvaus" msgstr "Kuvaus"
@ -229,6 +229,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
@ -285,8 +289,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -314,7 +318,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -322,7 +326,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -330,11 +334,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -380,11 +384,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -562,8 +566,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -606,11 +610,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Tulos" msgstr "Tulos"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -622,7 +626,7 @@ msgstr ""
msgid "Run Information" msgid "Run Information"
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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -803,11 +807,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -816,6 +820,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -842,13 +854,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -211,7 +211,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "Description" msgstr "Description"
@ -230,6 +230,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Téléchargement non sécurisé" msgstr "Téléchargement non sécurisé"
@ -286,8 +290,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -315,7 +319,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -323,7 +327,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -331,11 +335,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -381,11 +385,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "Information" msgstr "Information"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -567,8 +571,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -611,11 +615,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Résultat" msgstr "Résultat"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -627,7 +631,7 @@ msgstr "Drapeaux d'exécution"
msgid "Run Information" msgid "Run Information"
msgstr "Informations sur lexécution" msgstr "Informations sur lexécution"
#: 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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -809,11 +813,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -822,6 +826,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Journalisation détaillée du débogage" msgstr "Journalisation détaillée du débogage"
@ -848,13 +860,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -212,7 +212,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "תיאור" msgstr "תיאור"
@ -230,6 +230,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
@ -286,8 +290,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -315,7 +319,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -323,7 +327,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -331,11 +335,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -381,11 +385,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -563,8 +567,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -607,11 +611,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -623,7 +627,7 @@ msgstr ""
msgid "Run Information" msgid "Run Information"
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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -804,11 +808,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -817,6 +821,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -843,13 +855,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -205,7 +205,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "" msgstr ""
@ -223,6 +223,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
@ -279,8 +283,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -308,7 +312,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -316,7 +320,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -324,11 +328,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -374,11 +378,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -556,8 +560,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -600,11 +604,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -616,7 +620,7 @@ msgstr ""
msgid "Run Information" msgid "Run Information"
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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -797,11 +801,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -810,6 +814,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -836,13 +848,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -211,7 +211,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "Leírás" msgstr "Leírás"
@ -229,6 +229,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
@ -286,8 +290,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -315,7 +319,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -323,7 +327,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -331,11 +335,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -381,11 +385,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "Információ" msgstr "Információ"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -563,8 +567,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -607,11 +611,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Eredmény" msgstr "Eredmény"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -623,7 +627,7 @@ msgstr ""
msgid "Run Information" msgid "Run Information"
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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -804,11 +808,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -817,6 +821,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Részletes hibakeresési naplózás" msgstr "Részletes hibakeresési naplózás"
@ -843,13 +855,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -211,7 +211,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "Descrizione" msgstr "Descrizione"
@ -229,6 +229,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Download non sicuro" msgstr "Download non sicuro"
@ -285,8 +289,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -314,7 +318,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -322,7 +326,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -330,11 +334,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -380,11 +384,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "Informazioni" msgstr "Informazioni"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -562,8 +566,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -606,11 +610,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Risultato" msgstr "Risultato"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -622,7 +626,7 @@ msgstr "Avvia Flags"
msgid "Run Information" msgid "Run Information"
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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -803,11 +807,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -816,6 +820,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -842,13 +854,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -211,7 +211,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "説明" msgstr "説明"
@ -229,6 +229,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
@ -285,8 +289,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -314,7 +318,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -322,7 +326,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -330,11 +334,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -380,11 +384,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "情報" msgstr "情報"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -562,8 +566,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -606,11 +610,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "結果" msgstr "結果"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -622,7 +626,7 @@ msgstr "実行フラグ"
msgid "Run Information" msgid "Run Information"
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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -803,11 +807,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -816,6 +820,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "詳細なデバッグ ログ" msgstr "詳細なデバッグ ログ"
@ -842,13 +854,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -212,7 +212,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "설명" msgstr "설명"
@ -230,6 +230,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
@ -286,8 +290,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -315,7 +319,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -323,7 +327,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -331,11 +335,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -381,11 +385,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "정보" msgstr "정보"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -563,8 +567,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -607,11 +611,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -623,7 +627,7 @@ msgstr ""
msgid "Run Information" msgid "Run Information"
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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -804,11 +808,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -817,6 +821,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -843,13 +855,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -211,7 +211,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "वर्णन" msgstr "वर्णन"
@ -229,6 +229,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
@ -285,8 +289,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -314,7 +318,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -322,7 +326,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -330,11 +334,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -380,11 +384,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -562,8 +566,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -606,11 +610,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -622,7 +626,7 @@ msgstr ""
msgid "Run Information" msgid "Run Information"
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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -803,11 +807,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -816,6 +820,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -842,13 +854,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -211,7 +211,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "Keterangan" msgstr "Keterangan"
@ -229,6 +229,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
@ -285,8 +289,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -314,7 +318,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -322,7 +326,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -330,11 +334,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -380,11 +384,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -562,8 +566,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -606,11 +610,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -622,7 +626,7 @@ msgstr ""
msgid "Run Information" msgid "Run Information"
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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -803,11 +807,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -816,6 +820,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -842,13 +854,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -211,7 +211,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "Beskrivelse" msgstr "Beskrivelse"
@ -229,6 +229,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
@ -285,8 +289,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -314,7 +318,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -322,7 +326,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -330,11 +334,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -380,11 +384,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "Info" msgstr "Info"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -562,8 +566,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -606,11 +610,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Resultat" msgstr "Resultat"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -623,7 +627,7 @@ msgstr "Kjøringsflagg"
msgid "Run Information" msgid "Run Information"
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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -804,11 +808,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -817,6 +821,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -843,13 +855,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -226,7 +226,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:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "" msgstr ""
@ -246,6 +246,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Onbeveiligd downloaden" msgstr "Onbeveiligd downloaden"
@ -302,8 +306,8 @@ msgstr "Aantal elementen"
msgid "Elements" msgid "Elements"
msgstr "Elementen" msgstr "Elementen"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -333,7 +337,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -341,7 +345,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:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -349,11 +353,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:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -401,11 +405,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "Informatie" msgstr "Informatie"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -591,8 +595,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -637,11 +641,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:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -653,7 +657,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:226 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -854,11 +858,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -867,6 +871,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Uitgebreide logboekregistratie voor foutopsporing" msgstr "Uitgebreide logboekregistratie voor foutopsporing"
@ -893,13 +905,14 @@ 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:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View file

@ -190,7 +190,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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -228,7 +228,7 @@ msgstr "Deduplikacja adresów IP"
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "Opis" msgstr "Opis"
@ -248,6 +248,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Niezabezpieczone pobieranie" msgstr "Niezabezpieczone pobieranie"
@ -304,8 +308,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:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -335,7 +339,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -343,7 +347,7 @@ msgstr ""
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:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -351,11 +355,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "Dziennik zapory" msgstr "Dziennik zapory"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -403,11 +407,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "Informacje" msgstr "Informacje"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -595,8 +599,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -642,11 +646,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Wynik" msgstr "Wynik"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -658,7 +662,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:226 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -859,11 +863,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -872,6 +876,14 @@ msgstr ""
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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Pełne rejestrowanie debugowania" msgstr "Pełne rejestrowanie debugowania"
@ -898,13 +910,14 @@ 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:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -229,7 +229,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:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "Descrição" msgstr "Descrição"
@ -249,6 +249,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Descarregar inseguro" msgstr "Descarregar inseguro"
@ -305,8 +309,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:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -337,7 +341,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -345,7 +349,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:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -353,11 +357,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:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -406,11 +410,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "Informação" msgstr "Informação"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -596,8 +600,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -643,11 +647,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Resultado" msgstr "Resultado"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -659,7 +663,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:226 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -865,11 +869,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -878,6 +882,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Registos detalhados de depuração" msgstr "Registos detalhados de depuração"
@ -904,13 +916,14 @@ 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:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -229,7 +229,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:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "Descrição" msgstr "Descrição"
@ -249,6 +249,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Download inseguro" msgstr "Download inseguro"
@ -305,8 +309,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:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -337,7 +341,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -345,7 +349,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:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -353,11 +357,11 @@ msgstr ""
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:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -406,11 +410,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "Informações" msgstr "Informações"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -596,8 +600,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -643,11 +647,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Resultado" msgstr "Resultado"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -659,7 +663,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:226 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -865,11 +869,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -878,6 +882,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Registros Detalhados de Depuração" msgstr "Registros Detalhados de Depuração"
@ -904,13 +916,14 @@ 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:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -228,7 +228,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:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "Descriere" msgstr "Descriere"
@ -248,6 +248,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Descărcați Insecure" msgstr "Descărcați Insecure"
@ -304,8 +308,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:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -336,7 +340,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -344,7 +348,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:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -352,11 +356,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:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -404,11 +408,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "Informație" msgstr "Informație"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -594,8 +598,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -642,11 +646,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Rezultat" msgstr "Rezultat"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -658,7 +662,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:226 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -860,11 +864,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -873,6 +877,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Jurnalizare Verbală de Depanare" msgstr "Jurnalizare Verbală de Depanare"
@ -899,13 +911,14 @@ 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:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View file

@ -192,7 +192,7 @@ msgstr ""
"Для вступления в силу изменений на этой вкладке требуется перезапуск службы " "Для вступления в силу изменений на этой вкладке требуется перезапуск службы "
"banIP." "banIP."
#: 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:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -230,7 +230,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:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "Описание" msgstr "Описание"
@ -250,6 +250,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Небезопасная загрузка" msgstr "Небезопасная загрузка"
@ -306,8 +310,8 @@ msgstr "Количество элементов"
msgid "Elements" msgid "Elements"
msgstr "Элементы" msgstr "Элементы"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -337,7 +341,7 @@ msgstr ""
"Время истечения срока действия для автоматически добавляемых членов набора " "Время истечения срока действия для автоматически добавляемых членов набора "
"списков блокировки." "списков блокировки."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -345,7 +349,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "Выбор канала" msgstr "Выбор канала"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -353,11 +357,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "Журнал Firewall" msgstr "Журнал Firewall"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -405,11 +409,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "Информация" msgstr "Информация"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -598,8 +602,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -645,11 +649,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Результат" msgstr "Результат"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -661,7 +665,7 @@ msgstr "Флаги запуска"
msgid "Run Information" msgid "Run Information"
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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -862,11 +866,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -875,6 +879,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Подробный журнал отладки" msgstr "Подробный журнал отладки"
@ -901,13 +913,14 @@ 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:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -211,7 +211,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "Popis" msgstr "Popis"
@ -229,6 +229,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
@ -285,8 +289,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -314,7 +318,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -322,7 +326,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -330,11 +334,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -380,11 +384,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -562,8 +566,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -606,11 +610,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -622,7 +626,7 @@ msgstr ""
msgid "Run Information" msgid "Run Information"
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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -803,11 +807,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -816,6 +820,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -842,13 +854,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -211,7 +211,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "Beskrivning" msgstr "Beskrivning"
@ -229,6 +229,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Ladda ner osäkert" msgstr "Ladda ner osäkert"
@ -285,8 +289,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -314,7 +318,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -322,7 +326,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -330,11 +334,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -380,11 +384,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -562,8 +566,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -606,11 +610,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Resultat" msgstr "Resultat"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -622,7 +626,7 @@ msgstr "Förflaggor"
msgid "Run Information" msgid "Run Information"
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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -803,11 +807,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -816,6 +820,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -842,13 +854,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -211,7 +211,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "" msgstr ""
@ -229,6 +229,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
@ -285,8 +289,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -314,7 +318,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -322,7 +326,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -330,11 +334,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -380,11 +384,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -562,8 +566,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -606,11 +610,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -622,7 +626,7 @@ msgstr ""
msgid "Run Information" msgid "Run Information"
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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -803,11 +807,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -816,6 +820,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -842,13 +854,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -202,7 +202,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "" msgstr ""
@ -220,6 +220,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
@ -276,8 +280,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -305,7 +309,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -313,7 +317,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -321,11 +325,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -371,11 +375,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -553,8 +557,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -597,11 +601,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -613,7 +617,7 @@ msgstr ""
msgid "Run Information" msgid "Run Information"
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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -794,11 +798,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -807,6 +811,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
@ -833,13 +845,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -211,7 +211,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "Açıklama" msgstr "Açıklama"
@ -229,6 +229,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Güvensiz İndir" msgstr "Güvensiz İndir"
@ -285,8 +289,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -314,7 +318,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -322,7 +326,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -330,11 +334,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -380,11 +384,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "Bilgi" msgstr "Bilgi"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -562,8 +566,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -606,11 +610,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Sonuç" msgstr "Sonuç"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -622,7 +626,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:226 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -803,11 +807,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -816,6 +820,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Ayrıntılı Hata Ayıklama Günlüğü" msgstr "Ayrıntılı Hata Ayıklama Günlüğü"
@ -842,13 +854,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -212,7 +212,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "Опис" msgstr "Опис"
@ -230,6 +230,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Завантажувати небезпечним шляхом" msgstr "Завантажувати небезпечним шляхом"
@ -286,8 +290,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -315,7 +319,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -323,7 +327,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -331,11 +335,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -381,11 +385,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -563,8 +567,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -607,11 +611,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Результат" msgstr "Результат"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -623,7 +627,7 @@ msgstr "Прапорці запуску"
msgid "Run Information" msgid "Run Information"
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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -804,11 +808,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -817,6 +821,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Докладний журнал відлагодження" msgstr "Докладний журнал відлагодження"
@ -843,13 +855,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -211,7 +211,7 @@ msgstr ""
msgid "Default Block Policy" msgid "Default Block Policy"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "Mô tả" msgstr "Mô tả"
@ -229,6 +229,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
@ -285,8 +289,8 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -314,7 +318,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -322,7 +326,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -330,11 +334,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -380,11 +384,11 @@ msgstr ""
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -562,8 +566,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -606,11 +610,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -622,7 +626,7 @@ msgstr ""
msgid "Run Information" msgid "Run Information"
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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -803,11 +807,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -816,6 +820,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
#, fuzzy #, fuzzy
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
@ -843,13 +855,14 @@ msgstr ""
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -214,7 +214,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:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "描述" msgstr "描述"
@ -232,6 +232,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "下载不安全" msgstr "下载不安全"
@ -288,8 +292,8 @@ msgstr "元素数量"
msgid "Elements" msgid "Elements"
msgstr "元素" msgstr "元素"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -317,7 +321,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -325,7 +329,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "源选择" msgstr "源选择"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -333,11 +337,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "防火墙日志" msgstr "防火墙日志"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -383,11 +387,11 @@ msgstr "提升打开文件的最大数目便于在加载集时处理临时分割
msgid "Information" msgid "Information"
msgstr "信息" msgstr "信息"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -565,8 +569,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -609,11 +613,11 @@ msgstr "限制来自/对少量安全 IP 的互联网访问。"
msgid "Result" msgid "Result"
msgstr "结果" msgstr "结果"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -625,7 +629,7 @@ msgstr "运行标记"
msgid "Run Information" msgid "Run Information"
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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -810,11 +814,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -823,6 +827,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "详细的调试记录" msgstr "详细的调试记录"
@ -849,13 +861,14 @@ msgstr "广域网输入(数据包)"
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "广域网输入链" msgstr "广域网输入链"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View 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:217 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
msgid "Clear Custom Feeds" msgid "Clear Custom Feeds"
msgstr "" msgstr ""
@ -214,7 +214,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:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "Description" msgid "Description"
msgstr "描述" msgstr "描述"
@ -232,6 +232,10 @@ 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:235
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "Download Insecure" msgid "Download Insecure"
msgstr "下載不安全" msgstr "下載不安全"
@ -288,8 +292,8 @@ msgstr "元素數量"
msgid "Elements" msgid "Elements"
msgstr "元素" msgstr "元素"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
msgid "Empty field not allowed" msgid "Empty field not allowed"
msgstr "" msgstr ""
@ -317,7 +321,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:137 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
msgid "Feed Name" msgid "Feed Name"
msgstr "" msgstr ""
@ -325,7 +329,7 @@ msgstr ""
msgid "Feed Selection" msgid "Feed Selection"
msgstr "來源選擇" msgstr "來源選擇"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
msgid "Fill Custom Feeds" msgid "Fill Custom Feeds"
msgstr "" msgstr ""
@ -333,11 +337,11 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "防火牆日誌" msgstr "防火牆日誌"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
msgid "Flag" msgid "Flag"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
msgid "Flag not supported" msgid "Flag not supported"
msgstr "" msgstr ""
@ -383,11 +387,11 @@ msgstr "提升開啟檔案的最大數目便於在載入集合時處理臨時分
msgid "Information" msgid "Information"
msgstr "資訊" msgstr "資訊"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
msgid "Invalid characters" msgid "Invalid characters"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
msgid "Invalid input values, unable to save modifications." msgid "Invalid input values, unable to save modifications."
msgstr "" msgstr ""
@ -565,8 +569,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:156 #: 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:169 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
msgid "Protocol/URL format not supported" msgid "Protocol/URL format not supported"
msgstr "" msgstr ""
@ -609,11 +613,11 @@ msgstr "限制來自/對少量安全 IP 的網際網路存取。"
msgid "Result" msgid "Result"
msgstr "結果" msgstr "結果"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
msgid "Rulev4" msgid "Rulev4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
msgid "Rulev6" msgid "Rulev6"
msgstr "" msgstr ""
@ -625,7 +629,7 @@ msgstr "執行旗標"
msgid "Run Information" msgid "Run Information"
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:271
msgid "Save Custom Feeds" msgid "Save Custom Feeds"
msgstr "" msgstr ""
@ -810,11 +814,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:150 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
msgid "URLv4" msgid "URLv4"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "URLv6" msgid "URLv6"
msgstr "" msgstr ""
@ -823,6 +827,14 @@ 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:244
msgid "Upload Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
msgid "Upload of the custom feed file failed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "詳細除錯日誌" msgstr "詳細除錯日誌"
@ -849,13 +861,14 @@ msgstr "廣域網路輸入 (資料封包)"
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "廣域網路輸入鏈" msgstr "廣域網路輸入鏈"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
msgid "" msgid ""
"With this editor you can fill up an initial custom feed file (a 1:1 copy of " "With this editor you can upload your local custom feed file or fill up an "
"the version shipped with the package). The file is located at '/etc/banip/" "initial one (a 1:1 copy of the version shipped with the package). The file "
"banip.custom.feeds'. Then you can edit this file, delete entries, add new " "is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"ones, etc. To go back to the maintainers version just empty the custom feed " "delete entries, add new ones or make a local backup. To go back to the "
"file again (do not delete it!)." "maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482

View file

@ -4,7 +4,8 @@
"write": { "write": {
"file": { "file": {
"/etc/banip/*": [ "/etc/banip/*": [
"read" "read",
"write"
], ],
"/etc/banip/banip.allowlist": [ "/etc/banip/banip.allowlist": [
"write" "write"
@ -13,6 +14,7 @@
"write" "write"
], ],
"/etc/banip/banip.custom.feeds": [ "/etc/banip/banip.custom.feeds": [
"read",
"write" "write"
] ]
}, },