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:
parent
80da11720e
commit
ee3f56bd02
39 changed files with 1352 additions and 837 deletions
|
@ -1,3 +1,3 @@
|
|||
.cbi-input-text {
|
||||
width: 90% !important;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -30,12 +30,14 @@ const observer = new MutationObserver(function (mutations) {
|
|||
label.setAttribute("style", "font-weight: bold !important; color: #595 !important;");
|
||||
})
|
||||
L.resolveDefault(fs.stat('/etc/banip/banip.custom.feeds'), '').then(function (stat) {
|
||||
const buttons = document.querySelectorAll('#btnClear, #btnCreate, #btnSave');
|
||||
if (buttons[0] && stat.size === 0) {
|
||||
buttons[0].removeAttribute('disabled');
|
||||
} else if (buttons[1] && buttons[2] && stat.size > 0) {
|
||||
const buttons = document.querySelectorAll('#btnClear, #btnCreate, #btnSave, #btnUpload, #btnDownload');
|
||||
if (buttons[1] && buttons[2] && stat.size === 0) {
|
||||
buttons[1].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
|
||||
*/
|
||||
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') {
|
||||
return fs.read_direct('/etc/banip/banip.feeds', 'json').then(function (content) {
|
||||
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);
|
||||
}
|
||||
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 () {
|
||||
location.reload();
|
||||
});
|
||||
|
@ -118,9 +145,9 @@ return view.extend({
|
|||
render: function (data) {
|
||||
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\'. \
|
||||
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++) {
|
||||
feed = Object.keys(m.data.data)[i];
|
||||
url_4 = m.data.data[feed].url_4;
|
||||
|
@ -198,6 +225,24 @@ return view.extend({
|
|||
s = m.section(form.NamedSection, 'global');
|
||||
s.render = L.bind(function () {
|
||||
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', {
|
||||
'class': 'btn cbi-button cbi-button-action important',
|
||||
'id': 'btnCreate',
|
||||
|
|
|
@ -181,7 +181,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -212,7 +212,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "الوصف"
|
||||
|
||||
|
@ -230,6 +230,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr ""
|
||||
|
@ -286,8 +290,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -315,7 +319,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -323,7 +327,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -331,11 +335,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -381,11 +385,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -563,8 +567,8 @@ msgstr ""
|
|||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -607,11 +611,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -623,7 +627,7 @@ msgstr "تشغيل الإشارات"
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -804,11 +808,11 @@ msgstr "تأخير الزناد"
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -817,6 +821,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr "تسجيل مطول للتصحيح"
|
||||
|
@ -843,13 +855,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +211,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "Описание"
|
||||
|
||||
|
@ -229,6 +229,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr "Сваляй несигурно"
|
||||
|
@ -285,8 +289,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -314,7 +318,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -322,7 +326,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -330,11 +334,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -380,11 +384,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -562,8 +566,8 @@ msgstr ""
|
|||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -606,11 +610,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -622,7 +626,7 @@ msgstr ""
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -803,11 +807,11 @@ msgstr ""
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -816,6 +820,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr ""
|
||||
|
@ -842,13 +854,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +211,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -229,6 +229,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr ""
|
||||
|
@ -285,8 +289,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -314,7 +318,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -322,7 +326,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -330,11 +334,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -380,11 +384,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -562,8 +566,8 @@ msgstr ""
|
|||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -606,11 +610,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -622,7 +626,7 @@ msgstr ""
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -803,11 +807,11 @@ msgstr ""
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -816,6 +820,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr ""
|
||||
|
@ -842,13 +854,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +211,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "Descripció"
|
||||
|
||||
|
@ -229,6 +229,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr ""
|
||||
|
@ -285,8 +289,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -314,7 +318,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -322,7 +326,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -330,11 +334,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -380,11 +384,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -562,8 +566,8 @@ msgstr ""
|
|||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -606,11 +610,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -622,7 +626,7 @@ msgstr ""
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -803,11 +807,11 @@ msgstr ""
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -816,6 +820,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr "Enregistrament detallat de depuració"
|
||||
|
@ -842,13 +854,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +211,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "Popis"
|
||||
|
||||
|
@ -229,6 +229,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr ""
|
||||
|
@ -285,8 +289,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -314,7 +318,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -322,7 +326,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -330,11 +334,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -380,11 +384,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -562,8 +566,8 @@ msgstr ""
|
|||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -606,11 +610,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -622,7 +626,7 @@ msgstr ""
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -803,11 +807,11 @@ msgstr "Prodleva spuštění"
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -816,6 +820,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr "Podrobné protokolování ladění"
|
||||
|
@ -842,13 +854,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +211,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -229,6 +229,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during 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
|
||||
msgid "Download Insecure"
|
||||
msgstr "Download usikker"
|
||||
|
@ -285,8 +289,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -314,7 +318,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -322,7 +326,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -330,11 +334,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -380,11 +384,11 @@ msgstr ""
|
|||
msgid "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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -563,8 +567,8 @@ msgstr ""
|
|||
msgid "Profile used by 'msmtp' for banIP notification 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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -607,11 +611,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -623,7 +627,7 @@ msgstr "Kør flag"
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -804,11 +808,11 @@ msgstr "Udløserforsinkelse"
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -817,6 +821,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr "Verbose Debug Logning"
|
||||
|
@ -843,13 +855,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -182,7 +182,7 @@ msgstr "Ketten-/Set-Einstellungen"
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -220,7 +220,7 @@ msgstr "IPs deduplizieren"
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "Beschreibung"
|
||||
|
||||
|
@ -240,6 +240,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr "Unsicher herunterladen"
|
||||
|
@ -296,8 +300,8 @@ msgstr "Anzahl der Elemente"
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -325,7 +329,7 @@ msgstr "Aktiviert die IPv6-Unterstützung."
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -333,7 +337,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -341,11 +345,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -393,11 +397,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -583,8 +587,8 @@ msgstr "Verarbeitungsprotokoll"
|
|||
msgid "Profile used by 'msmtp' for banIP notification 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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -630,11 +634,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -646,7 +650,7 @@ msgstr "Laufzeit-Flags"
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -851,11 +855,11 @@ msgstr "Verzögerung der Trigger-Bedingung"
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -864,6 +868,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr "Ausführliche Debug-Protokollierung"
|
||||
|
@ -890,13 +902,14 @@ msgstr "WAN-Input (Pakete)"
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +211,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "Περιγραφή"
|
||||
|
||||
|
@ -229,6 +229,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr ""
|
||||
|
@ -285,8 +289,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -314,7 +318,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -322,7 +326,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -330,11 +334,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -380,11 +384,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -562,8 +566,8 @@ msgstr ""
|
|||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -606,11 +610,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -622,7 +626,7 @@ msgstr ""
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -803,11 +807,11 @@ msgstr ""
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -816,6 +820,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr ""
|
||||
|
@ -842,13 +854,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +211,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -229,6 +229,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr ""
|
||||
|
@ -285,8 +289,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -314,7 +318,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -322,7 +326,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -330,11 +334,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -380,11 +384,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -562,8 +566,8 @@ msgstr ""
|
|||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -606,11 +610,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -622,7 +626,7 @@ msgstr ""
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -803,11 +807,11 @@ msgstr ""
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -816,6 +820,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr ""
|
||||
|
@ -842,13 +854,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -190,7 +190,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -221,7 +221,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "Descripción"
|
||||
|
||||
|
@ -239,6 +239,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr "Descarga insegura"
|
||||
|
@ -295,8 +299,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -324,7 +328,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -332,7 +336,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -340,11 +344,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -390,11 +394,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -575,8 +579,8 @@ msgstr ""
|
|||
"Perfil utilizado por 'msmtp' para correos electrónicos de notificación de "
|
||||
"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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -619,11 +623,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -635,7 +639,7 @@ msgstr "Ejecutar banderas"
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -817,11 +821,11 @@ msgstr "Retraso de disparo"
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -830,6 +834,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr "Registro de depuración detallado"
|
||||
|
@ -856,13 +868,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +211,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "Kuvaus"
|
||||
|
||||
|
@ -229,6 +229,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr ""
|
||||
|
@ -285,8 +289,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -314,7 +318,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -322,7 +326,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -330,11 +334,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -380,11 +384,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -562,8 +566,8 @@ msgstr ""
|
|||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -606,11 +610,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -622,7 +626,7 @@ msgstr ""
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -803,11 +807,11 @@ msgstr ""
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -816,6 +820,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr ""
|
||||
|
@ -842,13 +854,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +211,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "Description"
|
||||
|
||||
|
@ -230,6 +230,10 @@ msgid "Don't check SSL server certificates during download."
|
|||
msgstr ""
|
||||
"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
|
||||
msgid "Download Insecure"
|
||||
msgstr "Téléchargement non sécurisé"
|
||||
|
@ -286,8 +290,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -315,7 +319,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -323,7 +327,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -331,11 +335,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -381,11 +385,11 @@ msgstr ""
|
|||
msgid "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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -567,8 +571,8 @@ msgstr ""
|
|||
"Profil utilisé par 'msmtp' pour les courriel de notification de bannissement "
|
||||
"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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -611,11 +615,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -627,7 +631,7 @@ msgstr "Drapeaux d'exécution"
|
|||
msgid "Run Information"
|
||||
msgstr "Informations sur l’exé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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -809,11 +813,11 @@ msgstr "Délai de déclenchement"
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -822,6 +826,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr "Journalisation détaillée du débogage"
|
||||
|
@ -848,13 +860,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -181,7 +181,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -212,7 +212,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "תיאור"
|
||||
|
||||
|
@ -230,6 +230,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr ""
|
||||
|
@ -286,8 +290,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -315,7 +319,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -323,7 +327,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -331,11 +335,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -381,11 +385,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -563,8 +567,8 @@ msgstr ""
|
|||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -607,11 +611,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -623,7 +627,7 @@ msgstr ""
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -804,11 +808,11 @@ msgstr ""
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -817,6 +821,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr ""
|
||||
|
@ -843,13 +855,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -174,7 +174,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -205,7 +205,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -223,6 +223,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr ""
|
||||
|
@ -279,8 +283,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -308,7 +312,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -316,7 +320,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -324,11 +328,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -374,11 +378,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -556,8 +560,8 @@ msgstr ""
|
|||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -600,11 +604,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -616,7 +620,7 @@ msgstr ""
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -797,11 +801,11 @@ msgstr ""
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -810,6 +814,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr ""
|
||||
|
@ -836,13 +848,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +211,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "Leírás"
|
||||
|
||||
|
@ -229,6 +229,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr ""
|
||||
|
@ -286,8 +290,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -315,7 +319,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -323,7 +327,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -331,11 +335,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -381,11 +385,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -563,8 +567,8 @@ msgstr ""
|
|||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -607,11 +611,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -623,7 +627,7 @@ msgstr ""
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -804,11 +808,11 @@ msgstr "Aktiváló késleltetése"
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -817,6 +821,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr "Részletes hibakeresési naplózás"
|
||||
|
@ -843,13 +855,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +211,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "Descrizione"
|
||||
|
||||
|
@ -229,6 +229,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during 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
|
||||
msgid "Download Insecure"
|
||||
msgstr "Download non sicuro"
|
||||
|
@ -285,8 +289,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -314,7 +318,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -322,7 +326,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -330,11 +334,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -380,11 +384,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -562,8 +566,8 @@ msgstr ""
|
|||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -606,11 +610,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -622,7 +626,7 @@ msgstr "Avvia Flags"
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -803,11 +807,11 @@ msgstr ""
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -816,6 +820,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr ""
|
||||
|
@ -842,13 +854,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +211,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "説明"
|
||||
|
||||
|
@ -229,6 +229,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr ""
|
||||
|
@ -285,8 +289,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -314,7 +318,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -322,7 +326,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -330,11 +334,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -380,11 +384,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -562,8 +566,8 @@ msgstr ""
|
|||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -606,11 +610,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -622,7 +626,7 @@ msgstr "実行フラグ"
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -803,11 +807,11 @@ msgstr "トリガ遅延"
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -816,6 +820,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr "詳細なデバッグ ログ"
|
||||
|
@ -842,13 +854,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -181,7 +181,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -212,7 +212,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "설명"
|
||||
|
||||
|
@ -230,6 +230,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr ""
|
||||
|
@ -286,8 +290,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -315,7 +319,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -323,7 +327,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -331,11 +335,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -381,11 +385,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -563,8 +567,8 @@ msgstr ""
|
|||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -607,11 +611,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -623,7 +627,7 @@ msgstr ""
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -804,11 +808,11 @@ msgstr ""
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -817,6 +821,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr ""
|
||||
|
@ -843,13 +855,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +211,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "वर्णन"
|
||||
|
||||
|
@ -229,6 +229,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr ""
|
||||
|
@ -285,8 +289,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -314,7 +318,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -322,7 +326,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -330,11 +334,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -380,11 +384,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -562,8 +566,8 @@ msgstr ""
|
|||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -606,11 +610,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -622,7 +626,7 @@ msgstr ""
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -803,11 +807,11 @@ msgstr ""
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -816,6 +820,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr ""
|
||||
|
@ -842,13 +854,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +211,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "Keterangan"
|
||||
|
||||
|
@ -229,6 +229,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr ""
|
||||
|
@ -285,8 +289,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -314,7 +318,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -322,7 +326,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -330,11 +334,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -380,11 +384,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -562,8 +566,8 @@ msgstr ""
|
|||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -606,11 +610,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -622,7 +626,7 @@ msgstr ""
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -803,11 +807,11 @@ msgstr ""
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -816,6 +820,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr ""
|
||||
|
@ -842,13 +854,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +211,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "Beskrivelse"
|
||||
|
||||
|
@ -229,6 +229,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr ""
|
||||
|
@ -285,8 +289,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -314,7 +318,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -322,7 +326,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -330,11 +334,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -380,11 +384,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -562,8 +566,8 @@ msgstr ""
|
|||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -606,11 +610,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -623,7 +627,7 @@ msgstr "Kjøringsflagg"
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -804,11 +808,11 @@ msgstr "Utløserforsinkelse"
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -817,6 +821,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr ""
|
||||
|
@ -843,13 +855,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -188,7 +188,7 @@ msgstr ""
|
|||
"Wijzigingen op dit tabblad hebben een herstart van de banIP-service nodig om "
|
||||
"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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -226,7 +226,7 @@ msgstr "IP's ontdubbelen"
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -246,6 +246,10 @@ msgstr "Domein opzoeken"
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr "Onbeveiligd downloaden"
|
||||
|
@ -302,8 +306,8 @@ msgstr "Aantal elementen"
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -333,7 +337,7 @@ msgstr "Schakelt IPv6-ondersteuning in."
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -341,7 +345,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -349,11 +353,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -401,11 +405,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -591,8 +595,8 @@ msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
|||
msgstr ""
|
||||
"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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -637,11 +641,11 @@ msgstr "Beperk de internettoegang van/tot een klein aantal beveiligde IP's."
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -653,7 +657,7 @@ msgstr "Vlaggen uitvoeren"
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -854,11 +858,11 @@ msgstr "Trigger vertraging"
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -867,6 +871,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr "Uitgebreide logboekregistratie voor foutopsporing"
|
||||
|
@ -893,13 +905,14 @@ msgstr "WAN-invoer (pakketten)"
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -190,7 +190,7 @@ msgstr ""
|
|||
"Zmiany na tej karcie wymagają ponownego uruchomienia usługi banIP, aby "
|
||||
"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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -228,7 +228,7 @@ msgstr "Deduplikacja adresów IP"
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "Opis"
|
||||
|
||||
|
@ -248,6 +248,10 @@ msgstr "Wyszukiwanie domen"
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr "Niezabezpieczone pobieranie"
|
||||
|
@ -304,8 +308,8 @@ msgstr "Liczba elementów"
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -335,7 +339,7 @@ msgid "Expiry time for auto added blocklist set members."
|
|||
msgstr ""
|
||||
"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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -343,7 +347,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -351,11 +355,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -403,11 +407,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -595,8 +599,8 @@ msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
|||
msgstr ""
|
||||
"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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -642,11 +646,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -658,7 +662,7 @@ msgstr "Flagi uruchomieniowe"
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -859,11 +863,11 @@ msgstr "Opóźnienie wyzwalacza"
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -872,6 +876,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr "Pełne rejestrowanie debugowania"
|
||||
|
@ -898,13 +910,14 @@ msgstr "Wejście WAN (pakiety)"
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -191,7 +191,7 @@ msgstr ""
|
|||
"As alterações nesta guia precisam de uma reinicialização do serviço banIP "
|
||||
"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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -229,7 +229,7 @@ msgstr "Eliminar IPs duplicados"
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "Descrição"
|
||||
|
||||
|
@ -249,6 +249,10 @@ msgstr "Busca por domínio"
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr "Descarregar inseguro"
|
||||
|
@ -305,8 +309,8 @@ msgstr "Contagem dos elementos"
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -337,7 +341,7 @@ msgstr ""
|
|||
"Tempo de expiração para os membros do conjunto de lista de bloqueio que "
|
||||
"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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -345,7 +349,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -353,11 +357,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -406,11 +410,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -596,8 +600,8 @@ msgstr "Registo de processamento"
|
|||
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."
|
||||
|
||||
#: 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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -643,11 +647,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -659,7 +663,7 @@ msgstr "Flags de Execução"
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -865,11 +869,11 @@ msgstr "Atraso do Gatilho"
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -878,6 +882,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr "Registos detalhados de depuração"
|
||||
|
@ -904,13 +916,14 @@ msgstr "WAN-Input (pacotes)"
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -191,7 +191,7 @@ msgstr ""
|
|||
"As alterações nesta guia precisam de uma reinicialização do serviço banIP "
|
||||
"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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -229,7 +229,7 @@ msgstr "Eliminar IPs duplicados"
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "Descrição"
|
||||
|
||||
|
@ -249,6 +249,10 @@ msgstr "Busca por domínio"
|
|||
msgid "Don't check SSL server certificates during 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
|
||||
msgid "Download Insecure"
|
||||
msgstr "Download inseguro"
|
||||
|
@ -305,8 +309,8 @@ msgstr "Contagem dos elementos"
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -337,7 +341,7 @@ msgstr ""
|
|||
"Tempo de expiração para os membros do conjunto de lista de bloqueio que "
|
||||
"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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -345,7 +349,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -353,11 +357,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -406,11 +410,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -596,8 +600,8 @@ msgstr "Registro de processamento"
|
|||
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."
|
||||
|
||||
#: 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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -643,11 +647,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -659,7 +663,7 @@ msgstr "Executar Flags"
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -865,11 +869,11 @@ msgstr "Gatilho de Atraso"
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -878,6 +882,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr "Registros Detalhados de Depuração"
|
||||
|
@ -904,13 +916,14 @@ msgstr "WAN-Input (pacotes)"
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -190,7 +190,7 @@ msgstr ""
|
|||
"Modificările din această filă necesită o repornire a serviciului banIP "
|
||||
"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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -228,7 +228,7 @@ msgstr "Deduplicați IP-uri"
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "Descriere"
|
||||
|
||||
|
@ -248,6 +248,10 @@ msgstr "Căutare domeniu"
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr "Descărcați Insecure"
|
||||
|
@ -304,8 +308,8 @@ msgstr "Număr de elemente"
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -336,7 +340,7 @@ msgstr ""
|
|||
"Timpul de expirare pentru membrii setului de liste de blocare adăugate "
|
||||
"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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -344,7 +348,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -352,11 +356,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -404,11 +408,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -594,8 +598,8 @@ msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
|||
msgstr ""
|
||||
"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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -642,11 +646,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -658,7 +662,7 @@ msgstr "Fixați indicatoarele"
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -860,11 +864,11 @@ msgstr "Intârzierea declanșării"
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -873,6 +877,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr "Jurnalizare Verbală de Depanare"
|
||||
|
@ -899,13 +911,14 @@ msgstr "WAN-Input (pachete)"
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -192,7 +192,7 @@ 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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -230,7 +230,7 @@ msgstr "Дублирование IP-адресов"
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "Описание"
|
||||
|
||||
|
@ -250,6 +250,10 @@ msgstr "Поиск домена"
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr "Небезопасная загрузка"
|
||||
|
@ -306,8 +310,8 @@ msgstr "Количество элементов"
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -345,7 +349,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -353,11 +357,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -405,11 +409,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -598,8 +602,8 @@ msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
|||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -645,11 +649,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -661,7 +665,7 @@ msgstr "Флаги запуска"
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -862,11 +866,11 @@ msgstr "Задержка запуска"
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -875,6 +879,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr "Подробный журнал отладки"
|
||||
|
@ -901,13 +913,14 @@ msgstr "WAN-Input (пакеты)"
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +211,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "Popis"
|
||||
|
||||
|
@ -229,6 +229,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr ""
|
||||
|
@ -285,8 +289,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -314,7 +318,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -322,7 +326,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -330,11 +334,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -380,11 +384,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -562,8 +566,8 @@ msgstr ""
|
|||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -606,11 +610,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -622,7 +626,7 @@ msgstr ""
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -803,11 +807,11 @@ msgstr ""
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -816,6 +820,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr ""
|
||||
|
@ -842,13 +854,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +211,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "Beskrivning"
|
||||
|
||||
|
@ -229,6 +229,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr "Ladda ner osäkert"
|
||||
|
@ -285,8 +289,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -314,7 +318,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -322,7 +326,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -330,11 +334,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -380,11 +384,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -562,8 +566,8 @@ msgstr ""
|
|||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -606,11 +610,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -622,7 +626,7 @@ msgstr "Förflaggor"
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -803,11 +807,11 @@ msgstr ""
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -816,6 +820,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr ""
|
||||
|
@ -842,13 +854,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +211,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -229,6 +229,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr ""
|
||||
|
@ -285,8 +289,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -314,7 +318,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -322,7 +326,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -330,11 +334,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -380,11 +384,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -562,8 +566,8 @@ msgstr ""
|
|||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -606,11 +610,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -622,7 +626,7 @@ msgstr ""
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -803,11 +807,11 @@ msgstr ""
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -816,6 +820,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr ""
|
||||
|
@ -842,13 +854,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -171,7 +171,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -202,7 +202,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -220,6 +220,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr ""
|
||||
|
@ -276,8 +280,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -305,7 +309,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -313,7 +317,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -321,11 +325,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -371,11 +375,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -553,8 +557,8 @@ msgstr ""
|
|||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -597,11 +601,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -613,7 +617,7 @@ msgstr ""
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -794,11 +798,11 @@ msgstr ""
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -807,6 +811,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr ""
|
||||
|
@ -833,13 +845,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +211,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "Açıklama"
|
||||
|
||||
|
@ -229,6 +229,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr "Güvensiz İndir"
|
||||
|
@ -285,8 +289,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -314,7 +318,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -322,7 +326,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -330,11 +334,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -380,11 +384,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -562,8 +566,8 @@ msgstr ""
|
|||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -606,11 +610,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -622,7 +626,7 @@ msgstr "Bayrakları Çalıştır"
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -803,11 +807,11 @@ msgstr "Tetikleme Gecikmesi"
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -816,6 +820,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr "Ayrıntılı Hata Ayıklama Günlüğü"
|
||||
|
@ -842,13 +854,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -181,7 +181,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -212,7 +212,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "Опис"
|
||||
|
||||
|
@ -230,6 +230,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr "Завантажувати небезпечним шляхом"
|
||||
|
@ -286,8 +290,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -315,7 +319,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -323,7 +327,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -331,11 +335,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -381,11 +385,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -563,8 +567,8 @@ msgstr ""
|
|||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -607,11 +611,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -623,7 +627,7 @@ msgstr "Прапорці запуску"
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -804,11 +808,11 @@ msgstr "Затримка запуску"
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -817,6 +821,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr "Докладний журнал відлагодження"
|
||||
|
@ -843,13 +855,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -180,7 +180,7 @@ msgstr ""
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -211,7 +211,7 @@ msgstr ""
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "Mô tả"
|
||||
|
||||
|
@ -229,6 +229,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr ""
|
||||
|
@ -285,8 +289,8 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -314,7 +318,7 @@ msgstr ""
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -322,7 +326,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -330,11 +334,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -380,11 +384,11 @@ msgstr ""
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -562,8 +566,8 @@ msgstr ""
|
|||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -606,11 +610,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -622,7 +626,7 @@ msgstr ""
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -803,11 +807,11 @@ msgstr "Kích hoạt độ trễ"
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -816,6 +820,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
#, fuzzy
|
||||
msgid "Verbose Debug Logging"
|
||||
|
@ -843,13 +855,14 @@ msgstr ""
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -180,7 +180,7 @@ msgstr "IP 链路/集合设置"
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -214,7 +214,7 @@ msgstr "IP 去重"
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "描述"
|
||||
|
||||
|
@ -232,6 +232,10 @@ msgstr "域名查询"
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr "下载不安全"
|
||||
|
@ -288,8 +292,8 @@ msgstr "元素数量"
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -317,7 +321,7 @@ msgstr "启用 IPv6 支持。"
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -325,7 +329,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -333,11 +337,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -383,11 +387,11 @@ msgstr "提升打开文件的最大数目便于在加载集时处理临时分割
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -565,8 +569,8 @@ msgstr "处理日志"
|
|||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -609,11 +613,11 @@ msgstr "限制来自/对少量安全 IP 的互联网访问。"
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -625,7 +629,7 @@ msgstr "运行标记"
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -810,11 +814,11 @@ msgstr "触发延时"
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -823,6 +827,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr "详细的调试记录"
|
||||
|
@ -849,13 +861,14 @@ msgstr "广域网输入(数据包)"
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -180,7 +180,7 @@ msgstr "IP 鏈結/集合設定"
|
|||
msgid "Changes on this tab needs a banIP service restart to take effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -214,7 +214,7 @@ msgstr "刪除重複 IP"
|
|||
msgid "Default Block Policy"
|
||||
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"
|
||||
msgstr "描述"
|
||||
|
||||
|
@ -232,6 +232,10 @@ msgstr ""
|
|||
msgid "Don't check SSL server certificates during download."
|
||||
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
|
||||
msgid "Download Insecure"
|
||||
msgstr "下載不安全"
|
||||
|
@ -288,8 +292,8 @@ msgstr "元素數量"
|
|||
msgid "Elements"
|
||||
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:180
|
||||
#: 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:207
|
||||
msgid "Empty field not allowed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -317,7 +321,7 @@ msgstr "啟用 IPv6 支援。"
|
|||
msgid "Expiry time for auto added blocklist set members."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -325,7 +329,7 @@ msgstr ""
|
|||
msgid "Feed Selection"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -333,11 +337,11 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -383,11 +387,11 @@ msgstr "提升開啟檔案的最大數目便於在載入集合時處理臨時分
|
|||
msgid "Information"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -565,8 +569,8 @@ msgstr "處理日誌"
|
|||
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
|
||||
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:169
|
||||
#: 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:196
|
||||
msgid "Protocol/URL format not supported"
|
||||
msgstr ""
|
||||
|
||||
|
@ -609,11 +613,11 @@ msgstr "限制來自/對少量安全 IP 的網際網路存取。"
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -625,7 +629,7 @@ msgstr "執行旗標"
|
|||
msgid "Run Information"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -810,11 +814,11 @@ msgstr "觸發延遲"
|
|||
msgid "Trigger action on ifup interface events."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -823,6 +827,14 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr "詳細除錯日誌"
|
||||
|
@ -849,13 +861,14 @@ msgstr "廣域網路輸入 (資料封包)"
|
|||
msgid "WAN-Input Chain"
|
||||
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 ""
|
||||
"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
|
||||
"the version shipped with the package). 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!)."
|
||||
"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'. 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!)."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
|
||||
|
|
|
@ -4,7 +4,8 @@
|
|||
"write": {
|
||||
"file": {
|
||||
"/etc/banip/*": [
|
||||
"read"
|
||||
"read",
|
||||
"write"
|
||||
],
|
||||
"/etc/banip/banip.allowlist": [
|
||||
"write"
|
||||
|
@ -13,6 +14,7 @@
|
|||
"write"
|
||||
],
|
||||
"/etc/banip/banip.custom.feeds": [
|
||||
"read",
|
||||
"write"
|
||||
]
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue