From 7ce43d20cb51ff0e002e5fda4267c876bd4a44ce Mon Sep 17 00:00:00 2001 From: Dirk Brenken Date: Thu, 27 Apr 2023 13:35:54 +0200 Subject: [PATCH] luci-app-banip: more feed editor improvements * add upload safeguards * beautify JSON output * small translation fix Signed-off-by: Dirk Brenken --- .../luci-static/resources/view/banip/feeds.js | 22 +++++++-- applications/luci-app-banip/po/ar/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/bg/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/bn_BD/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/ca/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/cs/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/da/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/de/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/el/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/en/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/es/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/fi/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/fr/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/he/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/hi/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/hu/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/it/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/ja/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/ko/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/mr/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/ms/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/nb_NO/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/nl/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/pl/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/pt/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/pt_BR/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/ro/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/ru/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/sk/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/sv/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/sw/banip.po | 47 ++++++++++--------- .../luci-app-banip/po/templates/banip.pot | 47 ++++++++++--------- applications/luci-app-banip/po/tr/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/uk/banip.po | 47 ++++++++++--------- applications/luci-app-banip/po/vi/banip.po | 47 ++++++++++--------- .../luci-app-banip/po/zh_Hans/banip.po | 47 ++++++++++--------- .../luci-app-banip/po/zh_Hant/banip.po | 47 ++++++++++--------- 37 files changed, 954 insertions(+), 760 deletions(-) diff --git a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js index 30fcb9d047..690fa4d1a5 100644 --- a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js +++ b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js @@ -58,8 +58,22 @@ observer.observe(targetNode, observerConfig); 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) { + L.resolveDefault(fs.read_direct('/etc/banip/banip.custom.feeds', 'json'), "").then(function (data) { + if (data) { + let dataLength = Object.keys(data).length || 0; + if (dataLength > 0) { + for (let i = 0; i < dataLength; i++) { + let feed = Object.keys(data)[i]; + let descr = data[feed].descr; + if (feed && descr) { + continue; + } + fs.write('/etc/banip/banip.custom.feeds', null).then(function () { + ui.addNotification(null, E('p', _('Upload of the custom feed file failed.')), 'error'); + }); + return; + } + } location.reload(); } else { fs.write('/etc/banip/banip.custom.feeds', null).then(function () { @@ -131,7 +145,7 @@ function handleEdit(ev) { } sumSubElements.push(nodeKeys[i].value, subElements); } - exportJson = JSON.stringify(sumSubElements).replace(/,{/g, ':{').replace(/^\[/, '{').replace(/\]$/, '}'); + exportJson = JSON.stringify(sumSubElements).replace(/^\[/, '{\n').replace(/\}]$/, '\n\t}\n}\n').replace(/,{"/g, ':{\n\t"').replace(/"},"/g, '"\n\t},\n"').replace(/","/g, '",\n\t"'); return fs.write('/etc/banip/banip.custom.feeds', exportJson).then(function () { location.reload(); }); @@ -145,7 +159,7 @@ 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 upload your local custom feed file or fill up an initial one (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 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++) { diff --git a/applications/luci-app-banip/po/ar/banip.po b/applications/luci-app-banip/po/ar/banip.po index dbf815d5f7..b6d5290910 100644 --- a/applications/luci-app-banip/po/ar/banip.po +++ b/applications/luci-app-banip/po/ar/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -198,6 +198,10 @@ msgstr "" msgid "Countries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -212,7 +216,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "الوصف" @@ -230,7 +234,7 @@ msgstr "" msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -290,8 +294,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -319,7 +323,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -327,7 +331,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -335,11 +339,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -385,11 +389,11 @@ msgstr "" msgid "Information" msgstr "معلومة" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -567,8 +571,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -611,11 +615,11 @@ msgstr "" msgid "Result" msgstr "نتيجة" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -627,7 +631,7 @@ msgstr "تشغيل الإشارات" msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -808,11 +812,11 @@ msgstr "تأخير الزناد" msgid "Trigger action on ifup interface events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -821,11 +825,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -855,7 +860,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/bg/banip.po b/applications/luci-app-banip/po/bg/banip.po index ae1101f1a6..cb35c9ef0b 100644 --- a/applications/luci-app-banip/po/bg/banip.po +++ b/applications/luci-app-banip/po/bg/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -197,6 +197,10 @@ msgstr "" msgid "Countries" msgstr "Държави" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -211,7 +215,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "Описание" @@ -229,7 +233,7 @@ 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 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -289,8 +293,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -318,7 +322,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -326,7 +330,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -334,11 +338,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -384,11 +388,11 @@ msgstr "" msgid "Information" msgstr "Информация" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -566,8 +570,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -610,11 +614,11 @@ msgstr "" msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -626,7 +630,7 @@ msgstr "" msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -807,11 +811,11 @@ msgstr "" msgid "Trigger action on ifup interface events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -820,11 +824,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -854,7 +859,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/bn_BD/banip.po b/applications/luci-app-banip/po/bn_BD/banip.po index 2b3a5130a9..bf1e5293a2 100644 --- a/applications/luci-app-banip/po/bn_BD/banip.po +++ b/applications/luci-app-banip/po/bn_BD/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -197,6 +197,10 @@ msgstr "" msgid "Countries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -211,7 +215,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "" @@ -229,7 +233,7 @@ msgstr "" msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -289,8 +293,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -318,7 +322,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -326,7 +330,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -334,11 +338,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -384,11 +388,11 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -566,8 +570,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -610,11 +614,11 @@ msgstr "" msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -626,7 +630,7 @@ msgstr "" msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -807,11 +811,11 @@ msgstr "" msgid "Trigger action on ifup interface events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -820,11 +824,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -854,7 +859,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/ca/banip.po b/applications/luci-app-banip/po/ca/banip.po index 2fd4f2d6ef..8c160d8758 100644 --- a/applications/luci-app-banip/po/ca/banip.po +++ b/applications/luci-app-banip/po/ca/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -197,6 +197,10 @@ msgstr "" msgid "Countries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -211,7 +215,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "Descripció" @@ -229,7 +233,7 @@ msgstr "" msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -289,8 +293,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -318,7 +322,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -326,7 +330,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -334,11 +338,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -384,11 +388,11 @@ msgstr "" msgid "Information" msgstr "Informació" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -566,8 +570,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -610,11 +614,11 @@ msgstr "" msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -626,7 +630,7 @@ msgstr "" msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -807,11 +811,11 @@ msgstr "" msgid "Trigger action on ifup interface events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -820,11 +824,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -854,7 +859,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/cs/banip.po b/applications/luci-app-banip/po/cs/banip.po index a22d4b3d16..18b23cddd4 100644 --- a/applications/luci-app-banip/po/cs/banip.po +++ b/applications/luci-app-banip/po/cs/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -197,6 +197,10 @@ msgstr "" msgid "Countries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -211,7 +215,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "Popis" @@ -229,7 +233,7 @@ msgstr "" msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -289,8 +293,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -318,7 +322,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -326,7 +330,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -334,11 +338,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -384,11 +388,11 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -566,8 +570,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -610,11 +614,11 @@ msgstr "" msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -626,7 +630,7 @@ msgstr "" msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -807,11 +811,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:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -820,11 +824,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -854,7 +859,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/da/banip.po b/applications/luci-app-banip/po/da/banip.po index 83ac235a40..b78c87caf0 100644 --- a/applications/luci-app-banip/po/da/banip.po +++ b/applications/luci-app-banip/po/da/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -197,6 +197,10 @@ msgstr "" msgid "Countries" msgstr "Lande" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -211,7 +215,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "" @@ -229,7 +233,7 @@ 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 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -289,8 +293,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -318,7 +322,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -326,7 +330,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -334,11 +338,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -384,11 +388,11 @@ msgstr "" msgid "Information" msgstr "Information" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -567,8 +571,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -611,11 +615,11 @@ msgstr "" msgid "Result" msgstr "Resultat" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -627,7 +631,7 @@ msgstr "Kør flag" msgid "Run Information" msgstr "Kør oplysninger" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -808,11 +812,11 @@ msgstr "Udløserforsinkelse" msgid "Trigger action on ifup interface events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -821,11 +825,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -855,7 +860,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/de/banip.po b/applications/luci-app-banip/po/de/banip.po index bfd6db972f..d13984dcc4 100644 --- a/applications/luci-app-banip/po/de/banip.po +++ b/applications/luci-app-banip/po/de/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -204,6 +204,10 @@ msgstr "" msgid "Countries" msgstr "Länder" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -220,7 +224,7 @@ msgstr "IPs deduplizieren" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "Beschreibung" @@ -240,7 +244,7 @@ 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 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -300,8 +304,8 @@ msgstr "Anzahl der Elemente" msgid "Elements" msgstr "Elemente" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -329,7 +333,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:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -337,7 +341,7 @@ msgstr "" msgid "Feed Selection" msgstr "Feed-Auswahl" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -345,11 +349,11 @@ msgstr "" msgid "Firewall Log" msgstr "Firewall-Protokoll" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -397,11 +401,11 @@ msgstr "" msgid "Information" msgstr "Informationen" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -587,8 +591,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -634,11 +638,11 @@ msgstr "" msgid "Result" msgstr "Ergebnis" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -650,7 +654,7 @@ msgstr "Laufzeit-Flags" msgid "Run Information" msgstr "Informationen zur Ausführung" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -855,11 +859,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:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -868,11 +872,12 @@ 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 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -902,7 +907,7 @@ msgstr "WAN-Input (Pakete)" msgid "WAN-Input Chain" msgstr "WAN-Input-Kette" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/el/banip.po b/applications/luci-app-banip/po/el/banip.po index 2b54dfae68..9bc4ff2abe 100644 --- a/applications/luci-app-banip/po/el/banip.po +++ b/applications/luci-app-banip/po/el/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -197,6 +197,10 @@ msgstr "" msgid "Countries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -211,7 +215,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "Περιγραφή" @@ -229,7 +233,7 @@ msgstr "" msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -289,8 +293,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -318,7 +322,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -326,7 +330,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -334,11 +338,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -384,11 +388,11 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -566,8 +570,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -610,11 +614,11 @@ msgstr "" msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -626,7 +630,7 @@ msgstr "" msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -807,11 +811,11 @@ msgstr "" msgid "Trigger action on ifup interface events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -820,11 +824,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -854,7 +859,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/en/banip.po b/applications/luci-app-banip/po/en/banip.po index 4f4c064d3a..1d4903a3fe 100644 --- a/applications/luci-app-banip/po/en/banip.po +++ b/applications/luci-app-banip/po/en/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -197,6 +197,10 @@ msgstr "" msgid "Countries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -211,7 +215,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "" @@ -229,7 +233,7 @@ msgstr "" msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -289,8 +293,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -318,7 +322,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -326,7 +330,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -334,11 +338,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -384,11 +388,11 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -566,8 +570,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -610,11 +614,11 @@ msgstr "" msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -626,7 +630,7 @@ msgstr "" msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -807,11 +811,11 @@ msgstr "" msgid "Trigger action on ifup interface events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -820,11 +824,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -854,7 +859,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/es/banip.po b/applications/luci-app-banip/po/es/banip.po index f392b17f8d..4b19504a55 100644 --- a/applications/luci-app-banip/po/es/banip.po +++ b/applications/luci-app-banip/po/es/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -207,6 +207,10 @@ msgstr "" msgid "Countries" msgstr "Países" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -221,7 +225,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "Descripción" @@ -239,7 +243,7 @@ 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 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -299,8 +303,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -328,7 +332,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -336,7 +340,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -344,11 +348,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -394,11 +398,11 @@ msgstr "" msgid "Information" msgstr "Información" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -579,8 +583,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -623,11 +627,11 @@ msgstr "" msgid "Result" msgstr "Resultado" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -639,7 +643,7 @@ msgstr "Ejecutar banderas" msgid "Run Information" msgstr "Ejecutar información" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -821,11 +825,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:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -834,11 +838,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -868,7 +873,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/fi/banip.po b/applications/luci-app-banip/po/fi/banip.po index c4e6ad30b3..8d0ba316ea 100644 --- a/applications/luci-app-banip/po/fi/banip.po +++ b/applications/luci-app-banip/po/fi/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -197,6 +197,10 @@ msgstr "" msgid "Countries" msgstr "Maat" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -211,7 +215,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "Kuvaus" @@ -229,7 +233,7 @@ 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 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -289,8 +293,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -318,7 +322,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -326,7 +330,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -334,11 +338,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -384,11 +388,11 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -566,8 +570,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -610,11 +614,11 @@ msgstr "" msgid "Result" msgstr "Tulos" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -626,7 +630,7 @@ msgstr "" msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -807,11 +811,11 @@ msgstr "" msgid "Trigger action on ifup interface events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -820,11 +824,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -854,7 +859,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/fr/banip.po b/applications/luci-app-banip/po/fr/banip.po index e6831f7981..8e07c7cecd 100644 --- a/applications/luci-app-banip/po/fr/banip.po +++ b/applications/luci-app-banip/po/fr/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -197,6 +197,10 @@ msgstr "" msgid "Countries" msgstr "Pays" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -211,7 +215,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "Description" @@ -230,7 +234,7 @@ 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 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -290,8 +294,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -319,7 +323,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -327,7 +331,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -335,11 +339,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -385,11 +389,11 @@ msgstr "" msgid "Information" msgstr "Information" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -571,8 +575,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -615,11 +619,11 @@ msgstr "" msgid "Result" msgstr "Résultat" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -631,7 +635,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:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -813,11 +817,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:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -826,11 +830,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -860,7 +865,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/he/banip.po b/applications/luci-app-banip/po/he/banip.po index 8b992cc6b6..9ca8fbcca2 100644 --- a/applications/luci-app-banip/po/he/banip.po +++ b/applications/luci-app-banip/po/he/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -198,6 +198,10 @@ msgstr "" msgid "Countries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -212,7 +216,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "תיאור" @@ -230,7 +234,7 @@ msgstr "" msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -290,8 +294,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -319,7 +323,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -327,7 +331,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -335,11 +339,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -385,11 +389,11 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -567,8 +571,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -611,11 +615,11 @@ msgstr "" msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -627,7 +631,7 @@ msgstr "" msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -808,11 +812,11 @@ msgstr "" msgid "Trigger action on ifup interface events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -821,11 +825,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -855,7 +860,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/hi/banip.po b/applications/luci-app-banip/po/hi/banip.po index 8e2edd6b0b..a4c4e7e898 100644 --- a/applications/luci-app-banip/po/hi/banip.po +++ b/applications/luci-app-banip/po/hi/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -191,6 +191,10 @@ msgstr "" msgid "Countries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -205,7 +209,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "" @@ -223,7 +227,7 @@ msgstr "" msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -283,8 +287,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -312,7 +316,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -320,7 +324,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -328,11 +332,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -378,11 +382,11 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -560,8 +564,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -604,11 +608,11 @@ msgstr "" msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -620,7 +624,7 @@ msgstr "" msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -801,11 +805,11 @@ msgstr "" msgid "Trigger action on ifup interface events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -814,11 +818,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -848,7 +853,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/hu/banip.po b/applications/luci-app-banip/po/hu/banip.po index 6ddbe1d5df..cec76af338 100644 --- a/applications/luci-app-banip/po/hu/banip.po +++ b/applications/luci-app-banip/po/hu/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -197,6 +197,10 @@ msgstr "" msgid "Countries" msgstr "Országok" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -211,7 +215,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "Leírás" @@ -229,7 +233,7 @@ msgstr "" msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -290,8 +294,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -319,7 +323,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -327,7 +331,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -335,11 +339,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -385,11 +389,11 @@ msgstr "" msgid "Information" msgstr "Információ" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -567,8 +571,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -611,11 +615,11 @@ msgstr "" msgid "Result" msgstr "Eredmény" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -627,7 +631,7 @@ msgstr "" msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -808,11 +812,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:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -821,11 +825,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -855,7 +860,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/it/banip.po b/applications/luci-app-banip/po/it/banip.po index a587778346..26ecc58c79 100644 --- a/applications/luci-app-banip/po/it/banip.po +++ b/applications/luci-app-banip/po/it/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -197,6 +197,10 @@ msgstr "" msgid "Countries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -211,7 +215,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "Descrizione" @@ -229,7 +233,7 @@ 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 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -289,8 +293,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -318,7 +322,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -326,7 +330,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -334,11 +338,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -384,11 +388,11 @@ msgstr "" msgid "Information" msgstr "Informazioni" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -566,8 +570,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -610,11 +614,11 @@ msgstr "" msgid "Result" msgstr "Risultato" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -626,7 +630,7 @@ msgstr "Avvia Flags" msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -807,11 +811,11 @@ msgstr "" msgid "Trigger action on ifup interface events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -820,11 +824,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -854,7 +859,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/ja/banip.po b/applications/luci-app-banip/po/ja/banip.po index adcca0ca51..d65232b46d 100644 --- a/applications/luci-app-banip/po/ja/banip.po +++ b/applications/luci-app-banip/po/ja/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -197,6 +197,10 @@ msgstr "" msgid "Countries" msgstr "国" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -211,7 +215,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "説明" @@ -229,7 +233,7 @@ msgstr "" msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -289,8 +293,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -318,7 +322,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -326,7 +330,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -334,11 +338,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -384,11 +388,11 @@ msgstr "" msgid "Information" msgstr "情報" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -566,8 +570,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -610,11 +614,11 @@ msgstr "" msgid "Result" msgstr "結果" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -626,7 +630,7 @@ msgstr "実行フラグ" msgid "Run Information" msgstr "実行情報" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -807,11 +811,11 @@ msgstr "トリガ遅延" msgid "Trigger action on ifup interface events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -820,11 +824,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -854,7 +859,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/ko/banip.po b/applications/luci-app-banip/po/ko/banip.po index 854bed0fb7..8259e8c836 100644 --- a/applications/luci-app-banip/po/ko/banip.po +++ b/applications/luci-app-banip/po/ko/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -198,6 +198,10 @@ msgstr "" msgid "Countries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -212,7 +216,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "설명" @@ -230,7 +234,7 @@ msgstr "" msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -290,8 +294,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -319,7 +323,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -327,7 +331,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -335,11 +339,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -385,11 +389,11 @@ msgstr "" msgid "Information" msgstr "정보" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -567,8 +571,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -611,11 +615,11 @@ msgstr "" msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -627,7 +631,7 @@ msgstr "" msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -808,11 +812,11 @@ msgstr "" msgid "Trigger action on ifup interface events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -821,11 +825,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -855,7 +860,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/mr/banip.po b/applications/luci-app-banip/po/mr/banip.po index 8a0428b539..71fdd33d49 100644 --- a/applications/luci-app-banip/po/mr/banip.po +++ b/applications/luci-app-banip/po/mr/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -197,6 +197,10 @@ msgstr "" msgid "Countries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -211,7 +215,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "वर्णन" @@ -229,7 +233,7 @@ msgstr "" msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -289,8 +293,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -318,7 +322,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -326,7 +330,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -334,11 +338,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -384,11 +388,11 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -566,8 +570,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -610,11 +614,11 @@ msgstr "" msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -626,7 +630,7 @@ msgstr "" msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -807,11 +811,11 @@ msgstr "" msgid "Trigger action on ifup interface events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -820,11 +824,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -854,7 +859,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/ms/banip.po b/applications/luci-app-banip/po/ms/banip.po index 76876f3529..40555ffa5f 100644 --- a/applications/luci-app-banip/po/ms/banip.po +++ b/applications/luci-app-banip/po/ms/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -197,6 +197,10 @@ msgstr "" msgid "Countries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -211,7 +215,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "Keterangan" @@ -229,7 +233,7 @@ msgstr "" msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -289,8 +293,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -318,7 +322,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -326,7 +330,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -334,11 +338,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -384,11 +388,11 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -566,8 +570,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -610,11 +614,11 @@ msgstr "" msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -626,7 +630,7 @@ msgstr "" msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -807,11 +811,11 @@ msgstr "" msgid "Trigger action on ifup interface events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -820,11 +824,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -854,7 +859,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/nb_NO/banip.po b/applications/luci-app-banip/po/nb_NO/banip.po index 7b45abe6a1..a95519b15b 100644 --- a/applications/luci-app-banip/po/nb_NO/banip.po +++ b/applications/luci-app-banip/po/nb_NO/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -197,6 +197,10 @@ msgstr "" msgid "Countries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -211,7 +215,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "Beskrivelse" @@ -229,7 +233,7 @@ msgstr "" msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -289,8 +293,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -318,7 +322,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -326,7 +330,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -334,11 +338,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -384,11 +388,11 @@ msgstr "" msgid "Information" msgstr "Info" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -566,8 +570,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -610,11 +614,11 @@ msgstr "" msgid "Result" msgstr "Resultat" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -627,7 +631,7 @@ msgstr "Kjøringsflagg" msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -808,11 +812,11 @@ msgstr "Utløserforsinkelse" msgid "Trigger action on ifup interface events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -821,11 +825,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -855,7 +860,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/nl/banip.po b/applications/luci-app-banip/po/nl/banip.po index 86caaf77ac..0dbd8a1939 100644 --- a/applications/luci-app-banip/po/nl/banip.po +++ b/applications/luci-app-banip/po/nl/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -210,6 +210,10 @@ msgstr "" msgid "Countries" msgstr "Landen" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -226,7 +230,7 @@ msgstr "IP's ontdubbelen" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "" @@ -246,7 +250,7 @@ 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 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -306,8 +310,8 @@ msgstr "Aantal elementen" msgid "Elements" msgstr "Elementen" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -337,7 +341,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:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -345,7 +349,7 @@ msgstr "" msgid "Feed Selection" msgstr "Feed selectie" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -353,11 +357,11 @@ msgstr "" msgid "Firewall Log" msgstr "Firewall-logboek" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -405,11 +409,11 @@ msgstr "" msgid "Information" msgstr "Informatie" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -595,8 +599,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -641,11 +645,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:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -657,7 +661,7 @@ msgstr "Vlaggen uitvoeren" msgid "Run Information" msgstr "Informatie uitvoeren" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -858,11 +862,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:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -871,11 +875,12 @@ 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 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -905,7 +910,7 @@ msgstr "WAN-invoer (pakketten)" msgid "WAN-Input Chain" msgstr "WAN-invoer reeks" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/pl/banip.po b/applications/luci-app-banip/po/pl/banip.po index ca02873d63..bef6891bb8 100644 --- a/applications/luci-app-banip/po/pl/banip.po +++ b/applications/luci-app-banip/po/pl/banip.po @@ -192,7 +192,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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "Wyczyść źródła niestandardowe" @@ -214,6 +214,10 @@ msgstr "" msgid "Countries" msgstr "Kraje" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -230,7 +234,7 @@ msgstr "Deduplikacja adresów IP" msgid "Default Block Policy" msgstr "Domyślne zasady blokowania" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "Opis" @@ -250,7 +254,7 @@ 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 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "Pobierz źródła niestandardowe" @@ -310,8 +314,8 @@ msgstr "Liczba elementów" msgid "Elements" msgstr "Elementy" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "Puste pole jest niedozwolone" @@ -341,7 +345,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:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "Nazwa źródła" @@ -349,7 +353,7 @@ msgstr "Nazwa źródła" msgid "Feed Selection" msgstr "Wybór źródeł" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "Wypełnij źródła niestandardowe" @@ -357,11 +361,11 @@ msgstr "Wypełnij źródła niestandardowe" msgid "Firewall Log" msgstr "Dziennik zapory" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "Flaga" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "Flaga jest nieobsługiwana" @@ -409,11 +413,11 @@ msgstr "" msgid "Information" msgstr "Informacje" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "Nieprawidłowe znaki" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "Nieprawidłowe wartości wejściowe, nie można zapisać zmian." @@ -604,8 +608,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "Format protokołu/adresu URL jest nieobsługiwany" @@ -651,11 +655,11 @@ msgstr "" msgid "Result" msgstr "Wynik" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "Regułav4" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "Regułav6" @@ -667,7 +671,7 @@ msgstr "Flagi uruchomieniowe" msgid "Run Information" msgstr "Informacje uruchomieniowe" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "Zapisz źródła niestandardowe" @@ -868,11 +872,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:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "URLv4" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "URLv6" @@ -881,11 +885,12 @@ msgstr "URLv6" 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 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "Prześlij źródła niestandardowe" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "Przesyłanie pliku źródeł niestandardowych nie powiodło się." @@ -915,7 +920,7 @@ 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:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/pt/banip.po b/applications/luci-app-banip/po/pt/banip.po index 440ad09195..e9d4d047d2 100644 --- a/applications/luci-app-banip/po/pt/banip.po +++ b/applications/luci-app-banip/po/pt/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -213,6 +213,10 @@ msgstr "" msgid "Countries" msgstr "Países" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -229,7 +233,7 @@ msgstr "Eliminar IPs duplicados" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "Descrição" @@ -249,7 +253,7 @@ 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 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -309,8 +313,8 @@ msgstr "Contagem dos elementos" msgid "Elements" msgstr "Elementos" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -341,7 +345,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:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -349,7 +353,7 @@ msgstr "" msgid "Feed Selection" msgstr "Seleção do feed" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -357,11 +361,11 @@ msgstr "" msgid "Firewall Log" msgstr "Registo do firewall" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -410,11 +414,11 @@ msgstr "" msgid "Information" msgstr "Informação" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -600,8 +604,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -647,11 +651,11 @@ msgstr "" msgid "Result" msgstr "Resultado" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -663,7 +667,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:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -869,11 +873,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:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -882,11 +886,12 @@ 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 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -916,7 +921,7 @@ msgstr "WAN-Input (pacotes)" msgid "WAN-Input Chain" msgstr "Cadeia WAN-Input" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/pt_BR/banip.po b/applications/luci-app-banip/po/pt_BR/banip.po index 80afd31933..45e4d70525 100644 --- a/applications/luci-app-banip/po/pt_BR/banip.po +++ b/applications/luci-app-banip/po/pt_BR/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -213,6 +213,10 @@ msgstr "" msgid "Countries" msgstr "Países" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -229,7 +233,7 @@ msgstr "Eliminar IPs duplicados" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "Descrição" @@ -249,7 +253,7 @@ 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 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -309,8 +313,8 @@ msgstr "Contagem dos elementos" msgid "Elements" msgstr "Elementos" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -341,7 +345,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:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -349,7 +353,7 @@ msgstr "" msgid "Feed Selection" msgstr "Seleção do feed" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -357,11 +361,11 @@ msgstr "" msgid "Firewall Log" msgstr "Registro do firewall" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -410,11 +414,11 @@ msgstr "" msgid "Information" msgstr "Informações" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -600,8 +604,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -647,11 +651,11 @@ msgstr "" msgid "Result" msgstr "Resultado" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -663,7 +667,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:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -869,11 +873,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:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -882,11 +886,12 @@ 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 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -916,7 +921,7 @@ msgstr "WAN-Input (pacotes)" msgid "WAN-Input Chain" msgstr "Cadeia WAN-Input" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/ro/banip.po b/applications/luci-app-banip/po/ro/banip.po index ae1d33ac4c..51684e41af 100644 --- a/applications/luci-app-banip/po/ro/banip.po +++ b/applications/luci-app-banip/po/ro/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -212,6 +212,10 @@ msgstr "" msgid "Countries" msgstr "Țări" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -228,7 +232,7 @@ msgstr "Deduplicați IP-uri" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "Descriere" @@ -248,7 +252,7 @@ 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 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -308,8 +312,8 @@ msgstr "Număr de elemente" msgid "Elements" msgstr "Elemente" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -340,7 +344,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:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -348,7 +352,7 @@ msgstr "" msgid "Feed Selection" msgstr "Selecția Feed" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -356,11 +360,11 @@ msgstr "" msgid "Firewall Log" msgstr "Jurnal Firewall" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -408,11 +412,11 @@ msgstr "" msgid "Information" msgstr "Informație" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -598,8 +602,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -646,11 +650,11 @@ msgstr "" msgid "Result" msgstr "Rezultat" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -662,7 +666,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:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -864,11 +868,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:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -877,11 +881,12 @@ 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 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -911,7 +916,7 @@ msgstr "WAN-Input (pachete)" msgid "WAN-Input Chain" msgstr "Chain WAN-Input" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/ru/banip.po b/applications/luci-app-banip/po/ru/banip.po index 3bdb22e3e4..0e9f6218f6 100644 --- a/applications/luci-app-banip/po/ru/banip.po +++ b/applications/luci-app-banip/po/ru/banip.po @@ -192,7 +192,7 @@ msgstr "" "Для вступления в силу изменений на этой вкладке требуется перезапуск службы " "banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -214,6 +214,10 @@ msgstr "" msgid "Countries" msgstr "Страны" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -230,7 +234,7 @@ msgstr "Дублирование IP-адресов" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "Описание" @@ -250,7 +254,7 @@ 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 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -310,8 +314,8 @@ msgstr "Количество элементов" msgid "Elements" msgstr "Элементы" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -341,7 +345,7 @@ msgstr "" "Время истечения срока действия для автоматически добавляемых членов набора " "списков блокировки." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -349,7 +353,7 @@ msgstr "" msgid "Feed Selection" msgstr "Выбор канала" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -357,11 +361,11 @@ msgstr "" msgid "Firewall Log" msgstr "Журнал Firewall" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -409,11 +413,11 @@ msgstr "" msgid "Information" msgstr "Информация" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -602,8 +606,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -649,11 +653,11 @@ msgstr "" msgid "Result" msgstr "Результат" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -665,7 +669,7 @@ msgstr "Флаги запуска" msgid "Run Information" msgstr "Информация о запуске" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -866,11 +870,11 @@ msgstr "Задержка запуска" msgid "Trigger action on ifup interface events." msgstr "Действие, выполняемое при поднятии интерфейса (ifup)." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -879,11 +883,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "Невозможно сохранить изменения: %s" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -913,7 +918,7 @@ msgstr "WAN-Input (пакеты)" msgid "WAN-Input Chain" msgstr "Цепочка WAN-Input" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/sk/banip.po b/applications/luci-app-banip/po/sk/banip.po index 32343cdcb7..d6e871fb99 100644 --- a/applications/luci-app-banip/po/sk/banip.po +++ b/applications/luci-app-banip/po/sk/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -197,6 +197,10 @@ msgstr "" msgid "Countries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -211,7 +215,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "Popis" @@ -229,7 +233,7 @@ msgstr "" msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -289,8 +293,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -318,7 +322,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -326,7 +330,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -334,11 +338,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -384,11 +388,11 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -566,8 +570,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -610,11 +614,11 @@ msgstr "" msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -626,7 +630,7 @@ msgstr "" msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -807,11 +811,11 @@ msgstr "" msgid "Trigger action on ifup interface events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -820,11 +824,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -854,7 +859,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/sv/banip.po b/applications/luci-app-banip/po/sv/banip.po index 0f29cc45f9..e39e4f2eaa 100644 --- a/applications/luci-app-banip/po/sv/banip.po +++ b/applications/luci-app-banip/po/sv/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -197,6 +197,10 @@ msgstr "" msgid "Countries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -211,7 +215,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "Beskrivning" @@ -229,7 +233,7 @@ msgstr "" msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -289,8 +293,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -318,7 +322,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -326,7 +330,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -334,11 +338,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -384,11 +388,11 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -566,8 +570,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -610,11 +614,11 @@ msgstr "" msgid "Result" msgstr "Resultat" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -626,7 +630,7 @@ msgstr "Förflaggor" msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -807,11 +811,11 @@ msgstr "" msgid "Trigger action on ifup interface events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -820,11 +824,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -854,7 +859,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/sw/banip.po b/applications/luci-app-banip/po/sw/banip.po index 84586b3639..f4aa8f7540 100644 --- a/applications/luci-app-banip/po/sw/banip.po +++ b/applications/luci-app-banip/po/sw/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -197,6 +197,10 @@ msgstr "" msgid "Countries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -211,7 +215,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "" @@ -229,7 +233,7 @@ msgstr "" msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -289,8 +293,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -318,7 +322,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -326,7 +330,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -334,11 +338,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -384,11 +388,11 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -566,8 +570,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -610,11 +614,11 @@ msgstr "" msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -626,7 +630,7 @@ msgstr "" msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -807,11 +811,11 @@ msgstr "" msgid "Trigger action on ifup interface events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -820,11 +824,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -854,7 +859,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/templates/banip.pot b/applications/luci-app-banip/po/templates/banip.pot index d552ff49e4..c2d19f819b 100644 --- a/applications/luci-app-banip/po/templates/banip.pot +++ b/applications/luci-app-banip/po/templates/banip.pot @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -188,6 +188,10 @@ msgstr "" msgid "Countries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -202,7 +206,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "" @@ -220,7 +224,7 @@ msgstr "" msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -280,8 +284,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -309,7 +313,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -317,7 +321,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -325,11 +329,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -375,11 +379,11 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -557,8 +561,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -601,11 +605,11 @@ msgstr "" msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -617,7 +621,7 @@ msgstr "" msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -798,11 +802,11 @@ msgstr "" msgid "Trigger action on ifup interface events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -811,11 +815,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -845,7 +850,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/tr/banip.po b/applications/luci-app-banip/po/tr/banip.po index 358edeb778..9911a5f418 100644 --- a/applications/luci-app-banip/po/tr/banip.po +++ b/applications/luci-app-banip/po/tr/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -197,6 +197,10 @@ msgstr "" msgid "Countries" msgstr "Ülkeler" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -211,7 +215,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "Açıklama" @@ -229,7 +233,7 @@ 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 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -289,8 +293,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -318,7 +322,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -326,7 +330,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -334,11 +338,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -384,11 +388,11 @@ msgstr "" msgid "Information" msgstr "Bilgi" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -566,8 +570,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -610,11 +614,11 @@ msgstr "" msgid "Result" msgstr "Sonuç" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -626,7 +630,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:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -807,11 +811,11 @@ msgstr "Tetikleme Gecikmesi" msgid "Trigger action on ifup interface events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -820,11 +824,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -854,7 +859,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/uk/banip.po b/applications/luci-app-banip/po/uk/banip.po index d19f557ff8..399ef29b25 100644 --- a/applications/luci-app-banip/po/uk/banip.po +++ b/applications/luci-app-banip/po/uk/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -198,6 +198,10 @@ msgstr "" msgid "Countries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -212,7 +216,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "Опис" @@ -230,7 +234,7 @@ 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 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -290,8 +294,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -319,7 +323,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -327,7 +331,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -335,11 +339,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -385,11 +389,11 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -567,8 +571,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -611,11 +615,11 @@ msgstr "" msgid "Result" msgstr "Результат" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -627,7 +631,7 @@ msgstr "Прапорці запуску" msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -808,11 +812,11 @@ msgstr "Затримка запуску" msgid "Trigger action on ifup interface events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -821,11 +825,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -855,7 +860,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/vi/banip.po b/applications/luci-app-banip/po/vi/banip.po index 281d10dccc..d8c9ad25b2 100644 --- a/applications/luci-app-banip/po/vi/banip.po +++ b/applications/luci-app-banip/po/vi/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -197,6 +197,10 @@ msgstr "" msgid "Countries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -211,7 +215,7 @@ msgstr "" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "Mô tả" @@ -229,7 +233,7 @@ msgstr "" msgid "Don't check SSL server certificates during download." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -289,8 +293,8 @@ msgstr "" msgid "Elements" msgstr "" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -318,7 +322,7 @@ msgstr "" msgid "Expiry time for auto added blocklist set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -326,7 +330,7 @@ msgstr "" msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -334,11 +338,11 @@ msgstr "" msgid "Firewall Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -384,11 +388,11 @@ msgstr "" msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -566,8 +570,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -610,11 +614,11 @@ msgstr "" msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -626,7 +630,7 @@ msgstr "" msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -807,11 +811,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:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -820,11 +824,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -855,7 +860,7 @@ msgstr "" msgid "WAN-Input Chain" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/zh_Hans/banip.po b/applications/luci-app-banip/po/zh_Hans/banip.po index 267582b127..65f60bfb37 100644 --- a/applications/luci-app-banip/po/zh_Hans/banip.po +++ b/applications/luci-app-banip/po/zh_Hans/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -200,6 +200,10 @@ msgstr "" msgid "Countries" msgstr "地区" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -214,7 +218,7 @@ msgstr "IP 去重" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "描述" @@ -232,7 +236,7 @@ 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 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -292,8 +296,8 @@ msgstr "元素数量" msgid "Elements" msgstr "元素" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -321,7 +325,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:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -329,7 +333,7 @@ msgstr "" msgid "Feed Selection" msgstr "源选择" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -337,11 +341,11 @@ msgstr "" msgid "Firewall Log" msgstr "防火墙日志" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -387,11 +391,11 @@ msgstr "提升打开文件的最大数目便于在加载集时处理临时分割 msgid "Information" msgstr "信息" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -569,8 +573,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -613,11 +617,11 @@ msgstr "限制来自/对少量安全 IP 的互联网访问。" msgid "Result" msgstr "结果" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -629,7 +633,7 @@ msgstr "运行标记" msgid "Run Information" msgstr "运行信息" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -814,11 +818,11 @@ msgstr "触发延时" msgid "Trigger action on ifup interface events." msgstr "ifup 接口事件的触发动作。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -827,11 +831,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "无法保存更改:%s" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -861,7 +866,7 @@ msgstr "广域网输入(数据包)" msgid "WAN-Input Chain" msgstr "广域网输入链" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " diff --git a/applications/luci-app-banip/po/zh_Hant/banip.po b/applications/luci-app-banip/po/zh_Hant/banip.po index 8abd2b576b..730431f8cd 100644 --- a/applications/luci-app-banip/po/zh_Hant/banip.po +++ b/applications/luci-app-banip/po/zh_Hant/banip.po @@ -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:262 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276 msgid "Clear Custom Feeds" msgstr "" @@ -200,6 +200,10 @@ msgstr "" msgid "Countries" msgstr "地區" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 +msgid "Custom Feed Editor" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 msgid "" "Deduplicate IP addresses across all active sets and and tidy up the local " @@ -214,7 +218,7 @@ msgstr "刪除重複 IP" msgid "Default Block Policy" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217 msgid "Description" msgstr "描述" @@ -232,7 +236,7 @@ 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 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249 msgid "Download Custom Feeds" msgstr "" @@ -292,8 +296,8 @@ msgstr "元素數量" msgid "Elements" msgstr "元素" -#: 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 +#: 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:221 msgid "Empty field not allowed" msgstr "" @@ -321,7 +325,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:164 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178 msgid "Feed Name" msgstr "" @@ -329,7 +333,7 @@ msgstr "" msgid "Feed Selection" msgstr "來源選擇" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267 msgid "Fill Custom Feeds" msgstr "" @@ -337,11 +341,11 @@ msgstr "" msgid "Firewall Log" msgstr "防火牆日誌" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226 msgid "Flag" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 msgid "Flag not supported" msgstr "" @@ -387,11 +391,11 @@ msgstr "提升開啟檔案的最大數目便於在載入集合時處理臨時分 msgid "Information" msgstr "資訊" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186 msgid "Invalid characters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114 msgid "Invalid input values, unable to save modifications." msgstr "" @@ -569,8 +573,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:183 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210 msgid "Protocol/URL format not supported" msgstr "" @@ -613,11 +617,11 @@ msgstr "限制來自/對少量安全 IP 的網際網路存取。" msgid "Result" msgstr "結果" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202 msgid "Rulev4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215 msgid "Rulev6" msgstr "" @@ -629,7 +633,7 @@ msgstr "執行旗標" msgid "Run Information" msgstr "執行資訊" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285 msgid "Save Custom Feeds" msgstr "" @@ -814,11 +818,11 @@ msgstr "觸發延遲" msgid "Trigger action on ifup interface events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191 msgid "URLv4" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204 msgid "URLv6" msgstr "" @@ -827,11 +831,12 @@ msgstr "" msgid "Unable to save modifications: %s" msgstr "無法儲存變更:%s" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258 msgid "Upload Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80 msgid "Upload of the custom feed file failed." msgstr "" @@ -861,7 +866,7 @@ msgstr "廣域網路輸入 (資料封包)" msgid "WAN-Input Chain" msgstr "廣域網路輸入鏈" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162 msgid "" "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 " -- 2.30.2