luci-app-banip: feed editor improvements
authorDirk Brenken <dev@brenken.org>
Mon, 24 Apr 2023 14:04:46 +0000 (16:04 +0200)
committerDirk Brenken <dev@brenken.org>
Mon, 24 Apr 2023 14:04:46 +0000 (16:04 +0200)
* add the ability to up-/download a local/remote JSON feed file

Signed-off-by: Dirk Brenken <dev@brenken.org>
39 files changed:
applications/luci-app-banip/htdocs/luci-static/resources/view/banip/custom.css
applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js
applications/luci-app-banip/po/ar/banip.po
applications/luci-app-banip/po/bg/banip.po
applications/luci-app-banip/po/bn_BD/banip.po
applications/luci-app-banip/po/ca/banip.po
applications/luci-app-banip/po/cs/banip.po
applications/luci-app-banip/po/da/banip.po
applications/luci-app-banip/po/de/banip.po
applications/luci-app-banip/po/el/banip.po
applications/luci-app-banip/po/en/banip.po
applications/luci-app-banip/po/es/banip.po
applications/luci-app-banip/po/fi/banip.po
applications/luci-app-banip/po/fr/banip.po
applications/luci-app-banip/po/he/banip.po
applications/luci-app-banip/po/hi/banip.po
applications/luci-app-banip/po/hu/banip.po
applications/luci-app-banip/po/it/banip.po
applications/luci-app-banip/po/ja/banip.po
applications/luci-app-banip/po/ko/banip.po
applications/luci-app-banip/po/mr/banip.po
applications/luci-app-banip/po/ms/banip.po
applications/luci-app-banip/po/nb_NO/banip.po
applications/luci-app-banip/po/nl/banip.po
applications/luci-app-banip/po/pl/banip.po
applications/luci-app-banip/po/pt/banip.po
applications/luci-app-banip/po/pt_BR/banip.po
applications/luci-app-banip/po/ro/banip.po
applications/luci-app-banip/po/ru/banip.po
applications/luci-app-banip/po/sk/banip.po
applications/luci-app-banip/po/sv/banip.po
applications/luci-app-banip/po/sw/banip.po
applications/luci-app-banip/po/templates/banip.pot
applications/luci-app-banip/po/tr/banip.po
applications/luci-app-banip/po/uk/banip.po
applications/luci-app-banip/po/vi/banip.po
applications/luci-app-banip/po/zh_Hans/banip.po
applications/luci-app-banip/po/zh_Hant/banip.po
applications/luci-app-banip/root/usr/share/rpcd/acl.d/luci-app-banip.json

index 4125e8892459f7f0924a2cafa28ebdaad243a942..23c60c683d20866bcae6dc51fd33ee7a1c7bb01a 100644 (file)
@@ -1,3 +1,3 @@
 .cbi-input-text {
        width: 90% !important;
-}
\ No newline at end of file
+}
index 672b23d0f85c17c4bca896fa465e1db6501e308e..30fcb9d0470d8d0b81671f9b1fb25ee7012acc26 100644 (file)
@@ -30,12 +30,14 @@ const observer = new MutationObserver(function (mutations) {
                        label.setAttribute("style", "font-weight: bold !important; color: #595 !important;");
                })
                L.resolveDefault(fs.stat('/etc/banip/banip.custom.feeds'), '').then(function (stat) {
-                       const buttons = document.querySelectorAll('#btnClear, #btnCreate, #btnSave');
-                       if (buttons[0] && stat.size === 0) {
-                               buttons[0].removeAttribute('disabled');
-                       } else if (buttons[1] && buttons[2] && stat.size > 0) {
+                       const buttons = document.querySelectorAll('#btnClear, #btnCreate, #btnSave, #btnUpload, #btnDownload');
+                       if (buttons[1] && buttons[2] && stat.size === 0) {
                                buttons[1].removeAttribute('disabled');
                                buttons[2].removeAttribute('disabled');
+                       } else if (buttons[0] && buttons[3] && buttons[4] && stat.size > 0) {
+                               buttons[0].removeAttribute('disabled');
+                               buttons[3].removeAttribute('disabled');
+                               buttons[4].removeAttribute('disabled');
                        }
                });
        }
@@ -54,6 +56,31 @@ observer.observe(targetNode, observerConfig);
        button handling
 */
 function handleEdit(ev) {
+       if (ev === 'upload') {
+               return ui.uploadFile('/etc/banip/banip.custom.feeds').then(function () {
+                       L.resolveDefault(fs.read_direct('/etc/banip/banip.custom.feeds', 'json'), "").then(function (res) {
+                               if (res) {
+                                       location.reload();
+                               } else {
+                                       fs.write('/etc/banip/banip.custom.feeds', null).then(function () {
+                                               ui.addNotification(null, E('p', _('Upload of the custom feed file failed.')), 'error');
+                                       });
+                               }
+                       });
+               }).catch(function () { });
+       }
+       if (ev === 'download') {
+               return fs.read_direct('/etc/banip/banip.custom.feeds', 'blob').then(function (blob) {
+                       let url = window.URL.createObjectURL(blob),
+                               date = new Date(),
+                               name = 'banip.custom.feeds_%04d-%02d-%02d.json'.format(date.getFullYear(), date.getMonth() + 1, date.getDate()),
+                               link = E('a', { 'style': 'display:none', 'href': url, 'download': name });
+                       document.body.appendChild(link);
+                       link.click();
+                       document.body.removeChild(link);
+                       window.URL.revokeObjectURL(url);
+               }).catch(function () { });
+       }
        if (ev === 'create') {
                return fs.read_direct('/etc/banip/banip.feeds', 'json').then(function (content) {
                        fs.write('/etc/banip/banip.custom.feeds', JSON.stringify(content)).then(function () {
@@ -104,7 +131,7 @@ function handleEdit(ev) {
                }
                sumSubElements.push(nodeKeys[i].value, subElements);
        }
-       exportJson = JSON.stringify(sumSubElements).replace(/,{/g, ':{').replace(/^\[/g, '{').replace(/\]$/g, '}');
+       exportJson = JSON.stringify(sumSubElements).replace(/,{/g, ':{').replace(/^\[/, '{').replace(/\]$/, '}');
        return fs.write('/etc/banip/banip.custom.feeds', exportJson).then(function () {
                location.reload();
        });
@@ -118,9 +145,9 @@ return view.extend({
        render: function (data) {
                let m, s, o, feed, url_4, url_6, rule_4, rule_6, descr, flag;
 
-               m = new form.JSONMap(data, 'Custom Feed Editor', _('With this editor you can fill up an initial custom feed file (a 1:1 copy of the version shipped with the package). \
+               m = new form.JSONMap(data, 'Custom Feed Editor', _('With this editor you can upload your local custom feed file or fill up an initial one (a 1:1 copy of the version shipped with the package). \
                        The file is located at \'/etc/banip/banip.custom.feeds\'. \
-                       Then you can edit this file, delete entries, add new ones, etc. To go back to the maintainers version just empty the custom feed file again (do not delete it!).'));
+                       Then you can edit this file, delete entries, add new ones or make a local backup. To go back to the maintainers version just empty the custom feed file again (do not delete it!).'));
                for (let i = 0; i < Object.keys(m.data.data).length; i++) {
                        feed = Object.keys(m.data.data)[i];
                        url_4 = m.data.data[feed].url_4;
@@ -198,6 +225,24 @@ return view.extend({
                s = m.section(form.NamedSection, 'global');
                s.render = L.bind(function () {
                        return E('div', { class: 'right' }, [
+                               E('button', {
+                                       'class': 'btn cbi-button cbi-button-action',
+                                       'id': 'btnDownload',
+                                       'disabled': 'disabled',
+                                       'click': ui.createHandlerFn(this, function () {
+                                               return handleEdit('download');
+                                       })
+                               }, [_('Download Custom Feeds')]),
+                               '\xa0\xa0\xa0',
+                               E('button', {
+                                       'class': 'btn cbi-button cbi-button-action',
+                                       'id': 'btnUpload',
+                                       'disabled': 'disabled',
+                                       'click': ui.createHandlerFn(this, function () {
+                                               return handleEdit('upload');
+                                       })
+                               }, [_('Upload Custom Feeds')]),
+                               '\xa0\xa0\xa0\xa0\xa0\xa0',
                                E('button', {
                                        'class': 'btn cbi-button cbi-button-action important',
                                        'id': 'btnCreate',
index 9d119931037d0f5cc4e8d5a18c8a2cf46b60b7fb..dbf815d5f70bda1c1d3f756bb4005bc217b597b6 100644 (file)
@@ -181,7 +181,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -212,7 +212,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "الوصف"
 
@@ -230,6 +230,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr ""
@@ -286,8 +290,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -315,7 +319,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -323,7 +327,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -331,11 +335,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -381,11 +385,11 @@ msgstr ""
 msgid "Information"
 msgstr "معلومة"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -563,8 +567,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -607,11 +611,11 @@ msgstr ""
 msgid "Result"
 msgstr "نتيجة"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -623,7 +627,7 @@ msgstr "تشغيل الإشارات"
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -804,11 +808,11 @@ msgstr "تأخير الزناد"
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -817,6 +821,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr "تسجيل مطول للتصحيح"
@@ -843,13 +855,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index 11f928d97e2442e8c5b2396c1604258d6f066e91..ae1101f1a6c74284165185746dcb99aae086a008 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -211,7 +211,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "Описание"
 
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr "Не проверявай SSL сертификати по време на сваляне."
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr "Сваляй несигурно"
@@ -285,8 +289,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -314,7 +318,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -322,7 +326,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -330,11 +334,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -380,11 +384,11 @@ msgstr ""
 msgid "Information"
 msgstr "Информация"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -562,8 +566,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -606,11 +610,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -622,7 +626,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -803,11 +807,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -816,6 +820,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr ""
@@ -842,13 +854,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index feb04fc22fba4c9c1b55eddb291f46e2b6f454cf..2b3a5130a9a12ac34fd3b71b21382771f058fdc8 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -211,7 +211,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr ""
 
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr ""
@@ -285,8 +289,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -314,7 +318,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -322,7 +326,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -330,11 +334,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -380,11 +384,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -562,8 +566,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -606,11 +610,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -622,7 +626,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -803,11 +807,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -816,6 +820,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr ""
@@ -842,13 +854,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index a9dfd55680d623e43f1185f81692580e2d3d372a..2fd4f2d6ef5dcbe8326ee28c80e10837cb02dd93 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -211,7 +211,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "Descripció"
 
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr ""
@@ -285,8 +289,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -314,7 +318,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -322,7 +326,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -330,11 +334,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -380,11 +384,11 @@ msgstr ""
 msgid "Information"
 msgstr "Informació"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -562,8 +566,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -606,11 +610,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -622,7 +626,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -803,11 +807,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -816,6 +820,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr "Enregistrament detallat de depuració"
@@ -842,13 +854,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index 70d282f5d2a9587d995c11982fa400ced7660d5d..a22d4b3d16dd811168cb02286a9a849cb926b8fe 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -211,7 +211,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "Popis"
 
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr ""
@@ -285,8 +289,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -314,7 +318,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -322,7 +326,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -330,11 +334,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -380,11 +384,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -562,8 +566,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -606,11 +610,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -622,7 +626,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -803,11 +807,11 @@ msgstr "Prodleva spuštění"
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -816,6 +820,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr "Podrobné protokolování ladění"
@@ -842,13 +854,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index 638ab8e3442711dbc9445119da0c8575e6043e68..61867a6324221ff0fd95c5a83404864e00553571 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -211,7 +211,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr ""
 
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr "Kontroller ikke SSL-servercertifikater under download."
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr "Download usikker"
@@ -285,8 +289,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -314,7 +318,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -322,7 +326,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -330,11 +334,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -380,11 +384,11 @@ msgstr ""
 msgid "Information"
 msgstr "Information"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -563,8 +567,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr "Profil, der anvendes af \"msmtp\" til banIP-meddelelses-e-mails."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -607,11 +611,11 @@ msgstr ""
 msgid "Result"
 msgstr "Resultat"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -623,7 +627,7 @@ msgstr "Kør flag"
 msgid "Run Information"
 msgstr "Kør oplysninger"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -804,11 +808,11 @@ msgstr "Udløserforsinkelse"
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -817,6 +821,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr "Verbose Debug Logning"
@@ -843,13 +855,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index 07997f47c13830a045f34561fdf6a347dbc82e4f..bfd6db972fa88936d7512da67894ad142fd2a426 100644 (file)
@@ -182,7 +182,7 @@ msgstr "Ketten-/Set-Einstellungen"
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -220,7 +220,7 @@ msgstr "IPs deduplizieren"
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "Beschreibung"
 
@@ -240,6 +240,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr "Während des Downloads keine SSL-Serverzertifikate überprüfen."
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr "Unsicher herunterladen"
@@ -296,8 +300,8 @@ msgstr "Anzahl der Elemente"
 msgid "Elements"
 msgstr "Elemente"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -325,7 +329,7 @@ msgstr "Aktiviert die IPv6-Unterstützung."
 msgid "Expiry time for auto added blocklist set members."
 msgstr "Verfallszeit für automatisch hinzugefügte Mitglieder der Sperrliste."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -333,7 +337,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr "Feed-Auswahl"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -341,11 +345,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr "Firewall-Protokoll"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -393,11 +397,11 @@ msgstr ""
 msgid "Information"
 msgstr "Informationen"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -583,8 +587,8 @@ msgstr "Verarbeitungsprotokoll"
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr "Von 'msmtp' verwendetes Profil für banIP-Benachrichtigungs-E-Mails."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -630,11 +634,11 @@ msgstr ""
 msgid "Result"
 msgstr "Ergebnis"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -646,7 +650,7 @@ msgstr "Laufzeit-Flags"
 msgid "Run Information"
 msgstr "Informationen zur Ausführung"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -851,11 +855,11 @@ msgstr "Verzögerung der Trigger-Bedingung"
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -864,6 +868,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr "Änderungen können nicht gespeichert werden: %s"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr "Ausführliche Debug-Protokollierung"
@@ -890,13 +902,14 @@ msgstr "WAN-Input (Pakete)"
 msgid "WAN-Input Chain"
 msgstr "WAN-Input-Kette"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index 8fc6641296dacee3c600d20d1a608da57ec92284..2b54dfae687f48715ac0b0c2df0619ebf4c9bdd6 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -211,7 +211,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "Περιγραφή"
 
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr ""
@@ -285,8 +289,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -314,7 +318,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -322,7 +326,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -330,11 +334,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -380,11 +384,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -562,8 +566,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -606,11 +610,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -622,7 +626,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -803,11 +807,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -816,6 +820,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr ""
@@ -842,13 +854,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index 6d7cf3244542a6632dd6230e0252655320034c20..4f4c064d3a67521b6f2c8e69304414e27cb1e395 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -211,7 +211,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr ""
 
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr ""
@@ -285,8 +289,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -314,7 +318,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -322,7 +326,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -330,11 +334,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -380,11 +384,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -562,8 +566,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -606,11 +610,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -622,7 +626,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -803,11 +807,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -816,6 +820,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr ""
@@ -842,13 +854,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index 5cd0fa39b5a82d1bd4b4e70e840554b4f992c882..f392b17f8daf7172ccd4e0ccf358c464281ce87e 100644 (file)
@@ -190,7 +190,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -221,7 +221,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "Descripción"
 
@@ -239,6 +239,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr "No verificar los certificados SSL del servidor durante la descarga."
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr "Descarga insegura"
@@ -295,8 +299,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -324,7 +328,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -332,7 +336,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -340,11 +344,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -390,11 +394,11 @@ msgstr ""
 msgid "Information"
 msgstr "Información"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -575,8 +579,8 @@ msgstr ""
 "Perfil utilizado por 'msmtp' para correos electrónicos de notificación de "
 "banIP."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -619,11 +623,11 @@ msgstr ""
 msgid "Result"
 msgstr "Resultado"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -635,7 +639,7 @@ msgstr "Ejecutar banderas"
 msgid "Run Information"
 msgstr "Ejecutar información"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -817,11 +821,11 @@ msgstr "Retraso de disparo"
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -830,6 +834,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr "Registro de depuración detallado"
@@ -856,13 +868,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index 84f42c2f0fc1eeb38064914a69a75f63a949db7d..c4e6ad30b3267f9daaa76587bb95752f494b5d19 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -211,7 +211,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "Kuvaus"
 
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr "Älä tarkista SSL-palvelinvarmenteita latauksen aikana."
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr ""
@@ -285,8 +289,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -314,7 +318,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -322,7 +326,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -330,11 +334,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -380,11 +384,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -562,8 +566,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -606,11 +610,11 @@ msgstr ""
 msgid "Result"
 msgstr "Tulos"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -622,7 +626,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -803,11 +807,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -816,6 +820,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr ""
@@ -842,13 +854,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index 7b5b160909d0d03167fa81db5bf1ddcd8ab27865..e6831f7981e4735c721fb3f4162c843c52408055 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -211,7 +211,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "Description"
 
@@ -230,6 +230,10 @@ msgid "Don't check SSL server certificates during download."
 msgstr ""
 "Ne pas vérifier les certificats SSL du serveur pendant le téléchargement."
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr "Téléchargement non sécurisé"
@@ -286,8 +290,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -315,7 +319,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -323,7 +327,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -331,11 +335,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -381,11 +385,11 @@ msgstr ""
 msgid "Information"
 msgstr "Information"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -567,8 +571,8 @@ msgstr ""
 "Profil utilisé par 'msmtp' pour les courriel de notification de bannissement "
 "IP."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -611,11 +615,11 @@ msgstr ""
 msgid "Result"
 msgstr "Résultat"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -627,7 +631,7 @@ msgstr "Drapeaux d'exécution"
 msgid "Run Information"
 msgstr "Informations sur l’exécution"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -809,11 +813,11 @@ msgstr "Délai de déclenchement"
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -822,6 +826,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr "Journalisation détaillée du débogage"
@@ -848,13 +860,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index e7b51f002a6fc6acbc96fced9a58c51a9f14292d..8b992cc6b636fbc38fdbf3ffb3ebf06fe4deae0c 100644 (file)
@@ -181,7 +181,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -212,7 +212,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "תיאור"
 
@@ -230,6 +230,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr ""
@@ -286,8 +290,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -315,7 +319,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -323,7 +327,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -331,11 +335,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -381,11 +385,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -563,8 +567,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -607,11 +611,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -623,7 +627,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -804,11 +808,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -817,6 +821,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr ""
@@ -843,13 +855,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index e1eaf8f9550a3dbdc494303fa252eca150203802..8e2edd6b0b430afac65fa21417b8a1a12a653f31 100644 (file)
@@ -174,7 +174,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -205,7 +205,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr ""
 
@@ -223,6 +223,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr ""
@@ -279,8 +283,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -308,7 +312,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -316,7 +320,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -324,11 +328,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -374,11 +378,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -556,8 +560,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -600,11 +604,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -616,7 +620,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -797,11 +801,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -810,6 +814,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr ""
@@ -836,13 +848,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index d847d3f84408b283eaabd9abb1d01e1f8b6fd358..6ddbe1d5dfb725df8831e8a8f38d71f33a2eb411 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -211,7 +211,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "Leírás"
 
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr ""
@@ -286,8 +290,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -315,7 +319,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -323,7 +327,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -331,11 +335,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -381,11 +385,11 @@ msgstr ""
 msgid "Information"
 msgstr "Információ"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -563,8 +567,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -607,11 +611,11 @@ msgstr ""
 msgid "Result"
 msgstr "Eredmény"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -623,7 +627,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -804,11 +808,11 @@ msgstr "Aktiváló késleltetése"
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -817,6 +821,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr "Részletes hibakeresési naplózás"
@@ -843,13 +855,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index 9b229941f3ed9949a14fd68de2e29ae69ba5aad6..a5877783464cc1e8993bc57f77da644f88ea4095 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -211,7 +211,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "Descrizione"
 
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr "Non controllare i certificati del server SSL durante il download."
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr "Download non sicuro"
@@ -285,8 +289,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -314,7 +318,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -322,7 +326,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -330,11 +334,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -380,11 +384,11 @@ msgstr ""
 msgid "Information"
 msgstr "Informazioni"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -562,8 +566,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -606,11 +610,11 @@ msgstr ""
 msgid "Result"
 msgstr "Risultato"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -622,7 +626,7 @@ msgstr "Avvia Flags"
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -803,11 +807,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -816,6 +820,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr ""
@@ -842,13 +854,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index 8e45051f8ff4fbfbd52efb76095ca0cf58d0634d..adcca0ca51809c6f5a77bffa4ab3438f6721c1f0 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -211,7 +211,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "説明"
 
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr ""
@@ -285,8 +289,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -314,7 +318,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -322,7 +326,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -330,11 +334,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -380,11 +384,11 @@ msgstr ""
 msgid "Information"
 msgstr "情報"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -562,8 +566,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -606,11 +610,11 @@ msgstr ""
 msgid "Result"
 msgstr "結果"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -622,7 +626,7 @@ msgstr "実行フラグ"
 msgid "Run Information"
 msgstr "実行情報"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -803,11 +807,11 @@ msgstr "トリガ遅延"
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -816,6 +820,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr "詳細なデバッグ ログ"
@@ -842,13 +854,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index feba35ffc4e128302854547878d5df0e586b8554..854bed0fb79e6bd5c82ea443d9a3ebc3d8ae7358 100644 (file)
@@ -181,7 +181,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -212,7 +212,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "설명"
 
@@ -230,6 +230,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr ""
@@ -286,8 +290,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -315,7 +319,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -323,7 +327,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -331,11 +335,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -381,11 +385,11 @@ msgstr ""
 msgid "Information"
 msgstr "정보"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -563,8 +567,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -607,11 +611,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -623,7 +627,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -804,11 +808,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -817,6 +821,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr ""
@@ -843,13 +855,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index cdc2ab0fb945e698b45c687b91e26d6d9a2eb3d0..8a0428b5392aad1afddcb1d583a58c002692d356 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -211,7 +211,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "वर्णन"
 
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr ""
@@ -285,8 +289,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -314,7 +318,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -322,7 +326,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -330,11 +334,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -380,11 +384,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -562,8 +566,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -606,11 +610,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -622,7 +626,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -803,11 +807,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -816,6 +820,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr ""
@@ -842,13 +854,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index 86fe1fd15e4c3ebb7c1e0cbc11a39445e3221e8c..76876f3529d58f9373990b00253ceb6eda7846ba 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -211,7 +211,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "Keterangan"
 
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr ""
@@ -285,8 +289,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -314,7 +318,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -322,7 +326,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -330,11 +334,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -380,11 +384,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -562,8 +566,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -606,11 +610,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -622,7 +626,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -803,11 +807,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -816,6 +820,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr ""
@@ -842,13 +854,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index bc5d1e55cd4b32615876f2e002ccc6dbec161ba8..7b45abe6a1095a757905f856e21873421b6fa6aa 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -211,7 +211,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "Beskrivelse"
 
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr ""
@@ -285,8 +289,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -314,7 +318,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -322,7 +326,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -330,11 +334,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -380,11 +384,11 @@ msgstr ""
 msgid "Information"
 msgstr "Info"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -562,8 +566,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -606,11 +610,11 @@ msgstr ""
 msgid "Result"
 msgstr "Resultat"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -623,7 +627,7 @@ msgstr "Kjøringsflagg"
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -804,11 +808,11 @@ msgstr "Utløserforsinkelse"
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -817,6 +821,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr ""
@@ -843,13 +855,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index 38bf3c06760ed68754b406b27eedfa991d882ac1..86caaf77ac538c584fc77c8f10086192956feec3 100644 (file)
@@ -188,7 +188,7 @@ msgstr ""
 "Wijzigingen op dit tabblad hebben een herstart van de banIP-service nodig om "
 "van kracht te worden."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -226,7 +226,7 @@ msgstr "IP's ontdubbelen"
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr ""
 
@@ -246,6 +246,10 @@ msgstr "Domein opzoeken"
 msgid "Don't check SSL server certificates during download."
 msgstr "Tijdens download niet de SSL server certificaten controleren."
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr "Onbeveiligd downloaden"
@@ -302,8 +306,8 @@ msgstr "Aantal elementen"
 msgid "Elements"
 msgstr "Elementen"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -333,7 +337,7 @@ msgstr "Schakelt IPv6-ondersteuning in."
 msgid "Expiry time for auto added blocklist set members."
 msgstr "Vervaltijd voor automatisch toegevoegde leden van de blokkeerlijstset."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -341,7 +345,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr "Feed selectie"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -349,11 +353,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr "Firewall-logboek"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -401,11 +405,11 @@ msgstr ""
 msgid "Information"
 msgstr "Informatie"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -591,8 +595,8 @@ msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 "Profiel gebruikt voor 'msmtp' voor banIP E-Mail berichten/notificaties."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -637,11 +641,11 @@ msgstr "Beperk de internettoegang van/tot een klein aantal beveiligde IP's."
 msgid "Result"
 msgstr "Resultaat"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -653,7 +657,7 @@ msgstr "Vlaggen uitvoeren"
 msgid "Run Information"
 msgstr "Informatie uitvoeren"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -854,11 +858,11 @@ msgstr "Trigger vertraging"
 msgid "Trigger action on ifup interface events."
 msgstr "Activeer actie op ifup-interfacegebeurtenissen."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -867,6 +871,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr "Kan wijzigingen niet opslaan: %s"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr "Uitgebreide logboekregistratie voor foutopsporing"
@@ -893,13 +905,14 @@ msgstr "WAN-invoer (pakketten)"
 msgid "WAN-Input Chain"
 msgstr "WAN-invoer reeks"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index a59e2a44f21e718c0cb04878de4325cfdeff8d31..02d388855ae0a43bebe259f0ff208f1ce18e96ac 100644 (file)
@@ -190,7 +190,7 @@ msgstr ""
 "Zmiany na tej karcie wymagają ponownego uruchomienia usługi banIP, aby "
 "zostały zastosowane."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -228,7 +228,7 @@ msgstr "Deduplikacja adresów IP"
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "Opis"
 
@@ -248,6 +248,10 @@ msgstr "Wyszukiwanie domen"
 msgid "Don't check SSL server certificates during download."
 msgstr "Nie sprawdzaj certyfikatów SSL serwera podczas pobierania."
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr "Niezabezpieczone pobieranie"
@@ -304,8 +308,8 @@ msgstr "Liczba elementów"
 msgid "Elements"
 msgstr "Elementy"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -335,7 +339,7 @@ msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 "Czas wygaśnięcia automatycznie dodanych członków zestawu listy zablokowanych."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -343,7 +347,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr "Wybór źródeł"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -351,11 +355,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr "Dziennik zapory"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -403,11 +407,11 @@ msgstr ""
 msgid "Information"
 msgstr "Informacje"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -595,8 +599,8 @@ msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 "Profil używany przez \"msmtp\" dla wiadomości e-mail z powiadomieniem banIP."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -642,11 +646,11 @@ msgstr ""
 msgid "Result"
 msgstr "Wynik"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -658,7 +662,7 @@ msgstr "Flagi uruchomieniowe"
 msgid "Run Information"
 msgstr "Informacje uruchomieniowe"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -859,11 +863,11 @@ msgstr "Opóźnienie wyzwalacza"
 msgid "Trigger action on ifup interface events."
 msgstr "Wyzwalanie akcji przy zdarzeniach interfejsu ifup."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -872,6 +876,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr "Nie można zapisać modyfikacji: %s"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr "Pełne rejestrowanie debugowania"
@@ -898,13 +910,14 @@ msgstr "Wejście WAN (pakiety)"
 msgid "WAN-Input Chain"
 msgstr "Łańcuch wejścia WAN"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index 538dcb2ada358daaf36ca2cfa9bca00067577202..440ad09195bd73dba5891d473d96a18ac9e11818 100644 (file)
@@ -191,7 +191,7 @@ msgstr ""
 "As alterações nesta guia precisam de uma reinicialização do serviço banIP "
 "para entrar em vigor."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -229,7 +229,7 @@ msgstr "Eliminar IPs duplicados"
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "Descrição"
 
@@ -249,6 +249,10 @@ msgstr "Busca por domínio"
 msgid "Don't check SSL server certificates during download."
 msgstr "Não verificar os certificados de SSL do servidor durante a descarrega."
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr "Descarregar inseguro"
@@ -305,8 +309,8 @@ msgstr "Contagem dos elementos"
 msgid "Elements"
 msgstr "Elementos"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -337,7 +341,7 @@ msgstr ""
 "Tempo de expiração para os membros do conjunto de lista de bloqueio que "
 "foram adicionados automaticamente."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -345,7 +349,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr "Seleção do feed"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -353,11 +357,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr "Registo do firewall"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -406,11 +410,11 @@ msgstr ""
 msgid "Information"
 msgstr "Informação"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -596,8 +600,8 @@ msgstr "Registo de processamento"
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr "O perfil usado pelo 'msmtp' para os e-mails de notificação do banIP."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -643,11 +647,11 @@ msgstr ""
 msgid "Result"
 msgstr "Resultado"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -659,7 +663,7 @@ msgstr "Flags de Execução"
 msgid "Run Information"
 msgstr "Informações de Execução"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -865,11 +869,11 @@ msgstr "Atraso do Gatilho"
 msgid "Trigger action on ifup interface events."
 msgstr "Acione a ação nos eventos da interface ifup."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -878,6 +882,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr "Não foi possível salvar as alterações: %s"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr "Registos detalhados de depuração"
@@ -904,13 +916,14 @@ msgstr "WAN-Input (pacotes)"
 msgid "WAN-Input Chain"
 msgstr "Cadeia WAN-Input"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index 2e68d9e3704f4087100a11a6a1bd6d376c035f54..80afd319331db8176b535d9f0aae8b356f0f9a14 100644 (file)
@@ -191,7 +191,7 @@ msgstr ""
 "As alterações nesta guia precisam de uma reinicialização do serviço banIP "
 "para entrar em vigor."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -229,7 +229,7 @@ msgstr "Eliminar IPs duplicados"
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "Descrição"
 
@@ -249,6 +249,10 @@ msgstr "Busca por domínio"
 msgid "Don't check SSL server certificates during download."
 msgstr "Não verifique os certificados do servidor SSL durante o download."
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr "Download inseguro"
@@ -305,8 +309,8 @@ msgstr "Contagem dos elementos"
 msgid "Elements"
 msgstr "Elementos"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -337,7 +341,7 @@ msgstr ""
 "Tempo de expiração para os membros do conjunto de lista de bloqueio que "
 "foram adicionados automaticamente."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -345,7 +349,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr "Seleção do feed"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -353,11 +357,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr "Registro do firewall"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -406,11 +410,11 @@ msgstr ""
 msgid "Information"
 msgstr "Informações"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -596,8 +600,8 @@ msgstr "Registro de processamento"
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr "O perfil usado pelo 'msmtp' para os e-mails de notificação do banIP."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -643,11 +647,11 @@ msgstr ""
 msgid "Result"
 msgstr "Resultado"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -659,7 +663,7 @@ msgstr "Executar Flags"
 msgid "Run Information"
 msgstr "Informações de Execução"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -865,11 +869,11 @@ msgstr "Gatilho de Atraso"
 msgid "Trigger action on ifup interface events."
 msgstr "Acione a ação nos eventos da interface ifup."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -878,6 +882,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr "Não foi possível salvar as alterações: %s"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr "Registros Detalhados de Depuração"
@@ -904,13 +916,14 @@ msgstr "WAN-Input (pacotes)"
 msgid "WAN-Input Chain"
 msgstr "Cadeia WAN-Input"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index 524d94ddcd303a3d90165f5529f8ab2033fc6e1c..ae1d33ac4cf1e6332e8d7788b1be56fcee785d0b 100644 (file)
@@ -190,7 +190,7 @@ msgstr ""
 "Modificările din această filă necesită o repornire a serviciului banIP "
 "pentru a intra în vigoare."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -228,7 +228,7 @@ msgstr "Deduplicați IP-uri"
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "Descriere"
 
@@ -248,6 +248,10 @@ msgstr "Căutare domeniu"
 msgid "Don't check SSL server certificates during download."
 msgstr "Nu verificați certificatele serverului SSL în timpul descărcării."
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr "Descărcați Insecure"
@@ -304,8 +308,8 @@ msgstr "Număr de elemente"
 msgid "Elements"
 msgstr "Elemente"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -336,7 +340,7 @@ msgstr ""
 "Timpul de expirare pentru membrii setului de liste de blocare adăugate "
 "automat."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -344,7 +348,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr "Selecția Feed"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -352,11 +356,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr "Jurnal Firewall"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -404,11 +408,11 @@ msgstr ""
 msgid "Information"
 msgstr "Informație"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -594,8 +598,8 @@ msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 "Profilul utilizat de 'msmtp' pentru mesajele electronice de notificare banIP."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -642,11 +646,11 @@ msgstr ""
 msgid "Result"
 msgstr "Rezultat"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -658,7 +662,7 @@ msgstr "Fixați indicatoarele"
 msgid "Run Information"
 msgstr "Informații despre cursă"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -860,11 +864,11 @@ msgstr "Intârzierea declanșării"
 msgid "Trigger action on ifup interface events."
 msgstr "Acțiune de declanșare a evenimentelor de interfață ifup."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -873,6 +877,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr "Imposibilitatea de a salva modificările: %s"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr "Jurnalizare Verbală de Depanare"
@@ -899,13 +911,14 @@ msgstr "WAN-Input (pachete)"
 msgid "WAN-Input Chain"
 msgstr "Chain WAN-Input"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index 52144a1ca743b0d52c1f8d23ddeae5dca587e690..f64d0d63316416057756d51bf02dc70bc36ef2a2 100644 (file)
@@ -192,7 +192,7 @@ msgstr ""
 "Для вступления в силу изменений на этой вкладке требуется перезапуск службы "
 "banIP."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -230,7 +230,7 @@ msgstr "Дублирование IP-адресов"
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "Описание"
 
@@ -250,6 +250,10 @@ msgstr "Поиск домена"
 msgid "Don't check SSL server certificates during download."
 msgstr "Не проверять SSL сертификаты сервера во время загрузки."
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr "Небезопасная загрузка"
@@ -306,8 +310,8 @@ msgstr "Количество элементов"
 msgid "Elements"
 msgstr "Элементы"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -337,7 +341,7 @@ msgstr ""
 "Время истечения срока действия для автоматически добавляемых членов набора "
 "списков блокировки."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -345,7 +349,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr "Выбор канала"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -353,11 +357,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr "Журнал Firewall"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -405,11 +409,11 @@ msgstr ""
 msgid "Information"
 msgstr "Информация"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -598,8 +602,8 @@ msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 "Профиль, используемый 'msmtp' для электронной почты с уведомлением banIP."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -645,11 +649,11 @@ msgstr ""
 msgid "Result"
 msgstr "Результат"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -661,7 +665,7 @@ msgstr "Флаги запуска"
 msgid "Run Information"
 msgstr "Информация о запуске"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -862,11 +866,11 @@ msgstr "Задержка запуска"
 msgid "Trigger action on ifup interface events."
 msgstr "Действие, выполняемое при поднятии интерфейса (ifup)."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -875,6 +879,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr "Невозможно сохранить изменения: %s"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr "Подробный журнал отладки"
@@ -901,13 +913,14 @@ msgstr "WAN-Input (пакеты)"
 msgid "WAN-Input Chain"
 msgstr "Цепочка WAN-Input"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index a0ced40b3ca9522300277e1beb9f654d2e99be13..32343cdcb7e804d32c93f76b3b122f5495bca30b 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -211,7 +211,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "Popis"
 
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr ""
@@ -285,8 +289,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -314,7 +318,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -322,7 +326,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -330,11 +334,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -380,11 +384,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -562,8 +566,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -606,11 +610,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -622,7 +626,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -803,11 +807,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -816,6 +820,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr ""
@@ -842,13 +854,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index 6b21f8e0643572feab432affc64f994efb0d7d0f..0f29cc45f9876bbb72d3e42e981ce5e65fc3647b 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -211,7 +211,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "Beskrivning"
 
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr "Ladda ner osäkert"
@@ -285,8 +289,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -314,7 +318,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -322,7 +326,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -330,11 +334,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -380,11 +384,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -562,8 +566,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -606,11 +610,11 @@ msgstr ""
 msgid "Result"
 msgstr "Resultat"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -622,7 +626,7 @@ msgstr "Förflaggor"
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -803,11 +807,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -816,6 +820,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr ""
@@ -842,13 +854,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index 720cd619aad4b57b0c71c3e13f6d55bc90afca0c..84586b3639fca361c13716001f8195483723312d 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -211,7 +211,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr ""
 
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr ""
@@ -285,8 +289,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -314,7 +318,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -322,7 +326,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -330,11 +334,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -380,11 +384,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -562,8 +566,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -606,11 +610,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -622,7 +626,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -803,11 +807,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -816,6 +820,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr ""
@@ -842,13 +854,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index 51a5ac4d74f895f72ea030ba4260a2fb9f585cfd..d552ff49e44a60ba0577a778ef02ce239badcd05 100644 (file)
@@ -171,7 +171,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -202,7 +202,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr ""
 
@@ -220,6 +220,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr ""
@@ -276,8 +280,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -305,7 +309,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -313,7 +317,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -321,11 +325,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -371,11 +375,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -553,8 +557,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -597,11 +601,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -613,7 +617,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -794,11 +798,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -807,6 +811,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr ""
@@ -833,13 +845,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index e6e95cda0db7be9e2981a4c387df27621c2efd68..358edeb778cf2f866effbdb317862a5cf2740ae1 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -211,7 +211,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "Açıklama"
 
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr "İndirme sırasında SSL sunucu sertifikalarını kontrol etme."
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr "Güvensiz İndir"
@@ -285,8 +289,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -314,7 +318,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -322,7 +326,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -330,11 +334,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -380,11 +384,11 @@ msgstr ""
 msgid "Information"
 msgstr "Bilgi"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -562,8 +566,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr "BanIP bildirim e-postaları için 'msmtp' tarafından kullanılan profil."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -606,11 +610,11 @@ msgstr ""
 msgid "Result"
 msgstr "Sonuç"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -622,7 +626,7 @@ msgstr "Bayrakları Çalıştır"
 msgid "Run Information"
 msgstr "Çalıştırma Bilgileri"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -803,11 +807,11 @@ msgstr "Tetikleme Gecikmesi"
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -816,6 +820,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr "Ayrıntılı Hata Ayıklama Günlüğü"
@@ -842,13 +854,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index a12c4e4b612a48dc1b30a589a6868ddd4501c3bf..d19f557ff89e3b9a146d4d908ca61852c118ae1c 100644 (file)
@@ -181,7 +181,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -212,7 +212,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "Опис"
 
@@ -230,6 +230,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr "Не перевіряти SSL-сертифікати сервера під час завантаження."
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr "Завантажувати небезпечним шляхом"
@@ -286,8 +290,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -315,7 +319,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -323,7 +327,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -331,11 +335,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -381,11 +385,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -563,8 +567,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -607,11 +611,11 @@ msgstr ""
 msgid "Result"
 msgstr "Результат"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -623,7 +627,7 @@ msgstr "Прапорці запуску"
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -804,11 +808,11 @@ msgstr "Затримка запуску"
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -817,6 +821,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr "Докладний журнал відлагодження"
@@ -843,13 +855,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index 5de052754233d8308aab99c511f69425152675b7..281d10dcccee4017c9584ef88771aa495a3f12e3 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -211,7 +211,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "Mô tả"
 
@@ -229,6 +229,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr ""
@@ -285,8 +289,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -314,7 +318,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -322,7 +326,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -330,11 +334,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -380,11 +384,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -562,8 +566,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -606,11 +610,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -622,7 +626,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -803,11 +807,11 @@ msgstr "Kích hoạt độ trễ"
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -816,6 +820,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 #, fuzzy
 msgid "Verbose Debug Logging"
@@ -843,13 +855,14 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index 9897790d1aadfc3cf360726d624042e59e3763b6..267582b1277d18eab973e6af2120c81297919481 100644 (file)
@@ -180,7 +180,7 @@ msgstr "IP 链路/集合设置"
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr "此标签页上进行的更改需要重启 banIP 服务才能生效。"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -214,7 +214,7 @@ msgstr "IP 去重"
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "描述"
 
@@ -232,6 +232,10 @@ msgstr "域名查询"
 msgid "Don't check SSL server certificates during download."
 msgstr "下载期间不检查 SSL 服务器证书。"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr "下载不安全"
@@ -288,8 +292,8 @@ msgstr "元素数量"
 msgid "Elements"
 msgstr "元素"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -317,7 +321,7 @@ msgstr "启用 IPv6 支持。"
 msgid "Expiry time for auto added blocklist set members."
 msgstr "自动添加的黑名单集成员的过期时间。"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -325,7 +329,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr "源选择"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -333,11 +337,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr "防火墙日志"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -383,11 +387,11 @@ msgstr "提升打开文件的最大数目便于在加载集时处理临时分割
 msgid "Information"
 msgstr "信息"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -565,8 +569,8 @@ msgstr "处理日志"
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr "“msmtp”所用的 banIP 电子邮件通知配置。"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -609,11 +613,11 @@ msgstr "限制来自/对少量安全 IP 的互联网访问。"
 msgid "Result"
 msgstr "结果"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -625,7 +629,7 @@ msgstr "运行标记"
 msgid "Run Information"
 msgstr "运行信息"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -810,11 +814,11 @@ msgstr "触发延时"
 msgid "Trigger action on ifup interface events."
 msgstr "ifup 接口事件的触发动作。"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -823,6 +827,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr "无法保存更改:%s"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr "详细的调试记录"
@@ -849,13 +861,14 @@ msgstr "广域网输入(数据包)"
 msgid "WAN-Input Chain"
 msgstr "广域网输入链"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index 4ef7165ac28c13c7cf8c99222d90d369cfc9c672..8abd2b576b77318d3962bd7c0202afba5e5a3e93 100644 (file)
@@ -180,7 +180,7 @@ msgstr "IP 鏈結/集合設定"
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:262
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -214,7 +214,7 @@ msgstr "刪除重複 IP"
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:176
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "Description"
 msgstr "描述"
 
@@ -232,6 +232,10 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr "下載期間不檢查 SSL 伺服器證書。"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:235
+msgid "Download Custom Feeds"
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
 msgid "Download Insecure"
 msgstr "下載不安全"
@@ -288,8 +292,8 @@ msgstr "元素數量"
 msgid "Elements"
 msgstr "元素"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:142
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:180
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:207
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -317,7 +321,7 @@ msgstr "啟用 IPv6 支援。"
 msgid "Expiry time for auto added blocklist set members."
 msgstr "自動加入的黑名單集合成員的過期時間。"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:137
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:164
 msgid "Feed Name"
 msgstr ""
 
@@ -325,7 +329,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr "來源選擇"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:208
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:253
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -333,11 +337,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr "防火牆日誌"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:185
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:212
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:192
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:219
 msgid "Flag not supported"
 msgstr ""
 
@@ -383,11 +387,11 @@ msgstr "提升開啟檔案的最大數目便於在載入集合時處理臨時分
 msgid "Information"
 msgstr "資訊"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:145
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:172
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:73
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:100
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -565,8 +569,8 @@ msgstr "處理日誌"
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr "「msmtp」所用的 banIP 電子郵件通知設定。"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:156
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:169
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:196
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -609,11 +613,11 @@ msgstr "限制來自/對少量安全 IP 的網際網路存取。"
 msgid "Result"
 msgstr "結果"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:161
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:188
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:201
 msgid "Rulev6"
 msgstr ""
 
@@ -625,7 +629,7 @@ msgstr "執行旗標"
 msgid "Run Information"
 msgstr "執行資訊"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:271
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -810,11 +814,11 @@ msgstr "觸發延遲"
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:150
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:177
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:163
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "URLv6"
 msgstr ""
 
@@ -823,6 +827,14 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr "無法儲存變更:%s"
 
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
+msgid "Upload Custom Feeds"
+msgstr ""
+
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:66
+msgid "Upload of the custom feed file failed."
+msgstr ""
+
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
 msgid "Verbose Debug Logging"
 msgstr "詳細除錯日誌"
@@ -849,13 +861,14 @@ msgstr "廣域網路輸入 (資料封包)"
 msgid "WAN-Input Chain"
 msgstr "廣域網路輸入鏈"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:121
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:148
 msgid ""
-"With this editor you can fill up an initial custom feed file (a 1:1 copy of "
-"the version shipped with the package). The file is located at '/etc/banip/"
-"banip.custom.feeds'. Then you can edit this file, delete entries, add new "
-"ones, etc. To go back to the maintainers version just empty the custom feed "
-"file again (do not delete it!)."
+"With this editor you can upload your local custom feed file or fill up an "
+"initial one (a 1:1 copy of the version shipped with the package). The file "
+"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
+"delete entries, add new ones or make a local backup. To go back to the "
+"maintainers version just empty the custom feed file again (do not delete "
+"it!)."
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
index 395e06aadc72099149150688c65007ab776c3a73..41b4b6650b630afd830658d8a385e67236043acf 100644 (file)
@@ -4,7 +4,8 @@
                "write": {
                        "file": {
                                "/etc/banip/*": [
-                                       "read"
+                                       "read",
+                                       "write"
                                ],
                                "/etc/banip/banip.allowlist": [
                                        "write"
@@ -13,6 +14,7 @@
                                        "write"
                                ],
                                "/etc/banip/banip.custom.feeds": [
+                                       "read",
                                        "write"
                                ]
                        },