luci-app-banip: more feed editor improvements
authorDirk Brenken <dev@brenken.org>
Fri, 28 Apr 2023 09:38:12 +0000 (11:38 +0200)
committerDirk Brenken <dev@brenken.org>
Fri, 28 Apr 2023 09:38:12 +0000 (11:38 +0200)
* add more 'upload' and 'save' safeguards
* save only keys with values in exported JSON structure/file

Signed-off-by: Dirk Brenken <dev@brenken.org>
37 files changed:
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

index 690fa4d1a5a985d5412a7ee1f84657d0d4a6e4db..84384ebad35f5b6227291768c372224906000e35 100644 (file)
@@ -73,6 +73,11 @@ function handleEdit(ev) {
                                                        });
                                                        return;
                                                }
                                                        });
                                                        return;
                                                }
+                                       } else {
+                                               fs.write('/etc/banip/banip.custom.feeds', null).then(function () {
+                                                       ui.addNotification(null, E('p', _('Upload of the custom feed file failed.')), 'error');
+                                               });
+                                               return;
                                        }
                                        location.reload();
                                } else {
                                        }
                                        location.reload();
                                } else {
@@ -122,6 +127,9 @@ function handleEdit(ev) {
                for (const element of elements) {
                        let key = element.id.split('.')[4];
                        let value = element.value || "";
                for (const element of elements) {
                        let key = element.id.split('.')[4];
                        let value = element.value || "";
+                       if (value === "") {
+                               continue;
+                       }
                        switch (key) {
                                case 'url_4':
                                        subElements.url_4 = value;
                        switch (key) {
                                case 'url_4':
                                        subElements.url_4 = value;
@@ -143,9 +151,13 @@ function handleEdit(ev) {
                                        break;
                        }
                }
                                        break;
                        }
                }
-               sumSubElements.push(nodeKeys[i].value, subElements);
+               if (nodeKeys[i].value !== "" && subElements.descr !== "") {
+                       sumSubElements.push(nodeKeys[i].value, subElements);
+               }
+       }
+       if (sumSubElements.length > 0) {
+               exportJson = JSON.stringify(sumSubElements).replace(/^\[/, '{\n').replace(/\}]$/, '\n\t}\n}\n').replace(/,{"/g, ':{\n\t"').replace(/"},"/g, '"\n\t},\n"').replace(/","/g, '",\n\t"');
        }
        }
-       exportJson = JSON.stringify(sumSubElements).replace(/^\[/, '{\n').replace(/\}]$/, '\n\t}\n}\n').replace(/,{"/g, ':{\n\t"').replace(/"},"/g, '"\n\t},\n"').replace(/","/g, '",\n\t"');
        return fs.write('/etc/banip/banip.custom.feeds', exportJson).then(function () {
                location.reload();
        });
        return fs.write('/etc/banip/banip.custom.feeds', exportJson).then(function () {
                location.reload();
        });
index b6d5290910566e909e12fdd1a0b89bd45cea1297..1718f87eaa224412f685705eda2ed3837b516175 100644 (file)
@@ -181,7 +181,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -198,7 +198,7 @@ msgstr ""
 msgid "Countries"
 msgstr ""
 
 msgid "Countries"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -216,7 +216,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "الوصف"
 
 msgid "Description"
 msgstr "الوصف"
 
@@ -234,7 +234,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -294,8 +294,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -323,7 +323,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -339,11 +339,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -389,11 +389,11 @@ msgstr ""
 msgid "Information"
 msgstr "معلومة"
 
 msgid "Information"
 msgstr "معلومة"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -571,8 +571,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -615,11 +615,11 @@ msgstr ""
 msgid "Result"
 msgstr "نتيجة"
 
 msgid "Result"
 msgstr "نتيجة"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -631,7 +631,7 @@ msgstr "تشغيل الإشارات"
 msgid "Run Information"
 msgstr ""
 
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -812,11 +812,11 @@ msgstr "تأخير الزناد"
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -825,12 +825,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -860,7 +861,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index cb35c9ef0b78e543188b0ea2415a6f1be55feb6b..2056325b29d257619c6c68dff0320a79eb610dd5 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -197,7 +197,7 @@ msgstr ""
 msgid "Countries"
 msgstr "Държави"
 
 msgid "Countries"
 msgstr "Държави"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -215,7 +215,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "Описание"
 
 msgid "Description"
 msgstr "Описание"
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr "Не проверявай SSL сертификати по време на сваляне."
 
 msgid "Don't check SSL server certificates during download."
 msgstr "Не проверявай SSL сертификати по време на сваляне."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -293,8 +293,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -322,7 +322,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -330,7 +330,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -338,11 +338,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -388,11 +388,11 @@ msgstr ""
 msgid "Information"
 msgstr "Информация"
 
 msgid "Information"
 msgstr "Информация"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -570,8 +570,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -614,11 +614,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -630,7 +630,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -811,11 +811,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -824,12 +824,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -859,7 +860,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index bf1e5293a2abff7c9a8e34b8568b78246230553f..f8df9090c170a7da4dc5f1543dd7f59112d668e8 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -197,7 +197,7 @@ msgstr ""
 msgid "Countries"
 msgstr ""
 
 msgid "Countries"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -215,7 +215,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr ""
 
 msgid "Description"
 msgstr ""
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -293,8 +293,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -322,7 +322,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -330,7 +330,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -338,11 +338,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -388,11 +388,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -570,8 +570,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -614,11 +614,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -630,7 +630,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -811,11 +811,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -824,12 +824,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -859,7 +860,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index 8c160d875866f1d7756faef06518aa6196f56061..f9a3cdaec2d7f6ccebe953c8a2b08be05ed7a51f 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -197,7 +197,7 @@ msgstr ""
 msgid "Countries"
 msgstr ""
 
 msgid "Countries"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -215,7 +215,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "Descripció"
 
 msgid "Description"
 msgstr "Descripció"
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -293,8 +293,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -322,7 +322,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -330,7 +330,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -338,11 +338,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -388,11 +388,11 @@ msgstr ""
 msgid "Information"
 msgstr "Informació"
 
 msgid "Information"
 msgstr "Informació"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -570,8 +570,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -614,11 +614,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -630,7 +630,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -811,11 +811,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -824,12 +824,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -859,7 +860,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index 18b23cddd478cd41f18313bf3bb617cd821f9bf2..754c67244df0cd5f0fd6b0542c33037df1c6b8cd 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -197,7 +197,7 @@ msgstr ""
 msgid "Countries"
 msgstr ""
 
 msgid "Countries"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -215,7 +215,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "Popis"
 
 msgid "Description"
 msgstr "Popis"
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -293,8 +293,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -322,7 +322,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -330,7 +330,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -338,11 +338,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -388,11 +388,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -570,8 +570,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -614,11 +614,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -630,7 +630,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -811,11 +811,11 @@ msgstr "Prodleva spuštění"
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -824,12 +824,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -859,7 +860,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index b78c87caf022bf4b383fb20621e402fbf06cb7a1..47cf6690a76518433be89f5b740571bb46ff91e9 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -197,7 +197,7 @@ msgstr ""
 msgid "Countries"
 msgstr "Lande"
 
 msgid "Countries"
 msgstr "Lande"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -215,7 +215,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr ""
 
 msgid "Description"
 msgstr ""
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr "Kontroller ikke SSL-servercertifikater under download."
 
 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:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -293,8 +293,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -322,7 +322,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -330,7 +330,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -338,11 +338,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -388,11 +388,11 @@ msgstr ""
 msgid "Information"
 msgstr "Information"
 
 msgid "Information"
 msgstr "Information"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -571,8 +571,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr "Profil, der anvendes af \"msmtp\" til banIP-meddelelses-e-mails."
 
 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:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -615,11 +615,11 @@ msgstr ""
 msgid "Result"
 msgstr "Resultat"
 
 msgid "Result"
 msgstr "Resultat"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -631,7 +631,7 @@ msgstr "Kør flag"
 msgid "Run Information"
 msgstr "Kør oplysninger"
 
 msgid "Run Information"
 msgstr "Kør oplysninger"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -812,11 +812,11 @@ msgstr "Udløserforsinkelse"
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -825,12 +825,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -860,7 +861,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index d13984dcc49369f5b05f9242df249b2f1e2175ae..5cdf20ad2f399c363d0eb5b1a4c6eecad6186627 100644 (file)
@@ -182,7 +182,7 @@ msgstr "Ketten-/Set-Einstellungen"
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -204,7 +204,7 @@ msgstr ""
 msgid "Countries"
 msgstr "Länder"
 
 msgid "Countries"
 msgstr "Länder"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -224,7 +224,7 @@ msgstr "IPs deduplizieren"
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "Beschreibung"
 
 msgid "Description"
 msgstr "Beschreibung"
 
@@ -244,7 +244,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr "Während des Downloads keine SSL-Serverzertifikate überprüfen."
 
 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:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -304,8 +304,8 @@ msgstr "Anzahl der Elemente"
 msgid "Elements"
 msgstr "Elemente"
 
 msgid "Elements"
 msgstr "Elemente"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -333,7 +333,7 @@ msgstr "Aktiviert die IPv6-Unterstützung."
 msgid "Expiry time for auto added blocklist set members."
 msgstr "Verfallszeit für automatisch hinzugefügte Mitglieder der Sperrliste."
 
 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:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -341,7 +341,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr "Feed-Auswahl"
 
 msgid "Feed Selection"
 msgstr "Feed-Auswahl"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -349,11 +349,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr "Firewall-Protokoll"
 
 msgid "Firewall Log"
 msgstr "Firewall-Protokoll"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -401,11 +401,11 @@ msgstr ""
 msgid "Information"
 msgstr "Informationen"
 
 msgid "Information"
 msgstr "Informationen"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -591,8 +591,8 @@ msgstr "Verarbeitungsprotokoll"
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr "Von 'msmtp' verwendetes Profil für banIP-Benachrichtigungs-E-Mails."
 
 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:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -638,11 +638,11 @@ msgstr ""
 msgid "Result"
 msgstr "Ergebnis"
 
 msgid "Result"
 msgstr "Ergebnis"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -654,7 +654,7 @@ msgstr "Laufzeit-Flags"
 msgid "Run Information"
 msgstr "Informationen zur Ausführung"
 
 msgid "Run Information"
 msgstr "Informationen zur Ausführung"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -859,11 +859,11 @@ msgstr "Verzögerung der Trigger-Bedingung"
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -872,12 +872,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr "Änderungen können nicht gespeichert werden: %s"
 
 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:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -907,7 +908,7 @@ msgstr "WAN-Input (Pakete)"
 msgid "WAN-Input Chain"
 msgstr "WAN-Input-Kette"
 
 msgid "WAN-Input Chain"
 msgstr "WAN-Input-Kette"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index 9bc4ff2abefd9bb070aa05ce3f139e2add30ea87..afb8c224f529010c5b39a00f6dbb31cfa82ae3d3 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -197,7 +197,7 @@ msgstr ""
 msgid "Countries"
 msgstr ""
 
 msgid "Countries"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -215,7 +215,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "Περιγραφή"
 
 msgid "Description"
 msgstr "Περιγραφή"
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -293,8 +293,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -322,7 +322,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -330,7 +330,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -338,11 +338,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -388,11 +388,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -570,8 +570,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -614,11 +614,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -630,7 +630,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -811,11 +811,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -824,12 +824,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -859,7 +860,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index 1d4903a3fe385d7fa05f2d06653d38d552f683fc..d65d83ea188d0dd3dc017b238049e8eea8b885ca 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -197,7 +197,7 @@ msgstr ""
 msgid "Countries"
 msgstr ""
 
 msgid "Countries"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -215,7 +215,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr ""
 
 msgid "Description"
 msgstr ""
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -293,8 +293,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -322,7 +322,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -330,7 +330,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -338,11 +338,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -388,11 +388,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -570,8 +570,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -614,11 +614,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -630,7 +630,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -811,11 +811,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -824,12 +824,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -859,7 +860,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index 4b19504a550a3de2cd8a686acf6bdcdd53646212..f45c59d64fcd2233b4ecb1841bdca0674440a198 100644 (file)
@@ -190,7 +190,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -207,7 +207,7 @@ msgstr ""
 msgid "Countries"
 msgstr "Países"
 
 msgid "Countries"
 msgstr "Países"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -225,7 +225,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "Descripción"
 
 msgid "Description"
 msgstr "Descripción"
 
@@ -243,7 +243,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr "No verificar los certificados SSL del servidor durante la descarga."
 
 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:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -303,8 +303,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -332,7 +332,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -340,7 +340,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -348,11 +348,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -398,11 +398,11 @@ msgstr ""
 msgid "Information"
 msgstr "Información"
 
 msgid "Information"
 msgstr "Información"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -583,8 +583,8 @@ msgstr ""
 "Perfil utilizado por 'msmtp' para correos electrónicos de notificación de "
 "banIP."
 
 "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:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -627,11 +627,11 @@ msgstr ""
 msgid "Result"
 msgstr "Resultado"
 
 msgid "Result"
 msgstr "Resultado"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -643,7 +643,7 @@ msgstr "Ejecutar banderas"
 msgid "Run Information"
 msgstr "Ejecutar información"
 
 msgid "Run Information"
 msgstr "Ejecutar información"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -825,11 +825,11 @@ msgstr "Retraso de disparo"
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -838,12 +838,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -873,7 +874,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index 8d0ba316ea2d121678fd198deb8f8ff126d69d0c..8f1b2393b2d3758a8d141738d1a4ac99fd592bf5 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -197,7 +197,7 @@ msgstr ""
 msgid "Countries"
 msgstr "Maat"
 
 msgid "Countries"
 msgstr "Maat"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -215,7 +215,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "Kuvaus"
 
 msgid "Description"
 msgstr "Kuvaus"
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr "Älä tarkista SSL-palvelinvarmenteita latauksen aikana."
 
 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:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -293,8 +293,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -322,7 +322,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -330,7 +330,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -338,11 +338,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -388,11 +388,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -570,8 +570,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -614,11 +614,11 @@ msgstr ""
 msgid "Result"
 msgstr "Tulos"
 
 msgid "Result"
 msgstr "Tulos"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -630,7 +630,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -811,11 +811,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -824,12 +824,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -859,7 +860,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index 8e07c7cecdb93addba4a9f497fd77c0838407348..68f8e9f00c7489696fb3eb04e187c3908b61a1dc 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -197,7 +197,7 @@ msgstr ""
 msgid "Countries"
 msgstr "Pays"
 
 msgid "Countries"
 msgstr "Pays"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -215,7 +215,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "Description"
 
 msgid "Description"
 msgstr "Description"
 
@@ -234,7 +234,7 @@ msgid "Don't check SSL server certificates during download."
 msgstr ""
 "Ne pas vérifier les certificats SSL du serveur pendant le téléchargement."
 
 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:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -294,8 +294,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -323,7 +323,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -339,11 +339,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -389,11 +389,11 @@ msgstr ""
 msgid "Information"
 msgstr "Information"
 
 msgid "Information"
 msgstr "Information"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -575,8 +575,8 @@ msgstr ""
 "Profil utilisé par 'msmtp' pour les courriel de notification de bannissement "
 "IP."
 
 "Profil utilisé par 'msmtp' pour les courriel de notification de bannissement "
 "IP."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -619,11 +619,11 @@ msgstr ""
 msgid "Result"
 msgstr "Résultat"
 
 msgid "Result"
 msgstr "Résultat"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -635,7 +635,7 @@ msgstr "Drapeaux d'exécution"
 msgid "Run Information"
 msgstr "Informations sur l’exécution"
 
 msgid "Run Information"
 msgstr "Informations sur l’exécution"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -817,11 +817,11 @@ msgstr "Délai de déclenchement"
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -830,12 +830,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -865,7 +866,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index 9ca8fbcca2228ea41efa609f87b77e08058684f9..86605ff7c3e7a35f45db8134bbac36c46980fa23 100644 (file)
@@ -181,7 +181,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -198,7 +198,7 @@ msgstr ""
 msgid "Countries"
 msgstr ""
 
 msgid "Countries"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -216,7 +216,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "תיאור"
 
 msgid "Description"
 msgstr "תיאור"
 
@@ -234,7 +234,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -294,8 +294,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -323,7 +323,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -339,11 +339,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -389,11 +389,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -571,8 +571,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -615,11 +615,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -631,7 +631,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -812,11 +812,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -825,12 +825,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -860,7 +861,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index a4c4e7e898ec3440c645855864c84190e325090d..de230220bd2ce87e6ffa1322b1cc11b27af7411c 100644 (file)
@@ -174,7 +174,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -191,7 +191,7 @@ msgstr ""
 msgid "Countries"
 msgstr ""
 
 msgid "Countries"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -209,7 +209,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr ""
 
 msgid "Description"
 msgstr ""
 
@@ -227,7 +227,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -287,8 +287,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -316,7 +316,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -324,7 +324,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -332,11 +332,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -382,11 +382,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -564,8 +564,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -608,11 +608,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -624,7 +624,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -805,11 +805,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -818,12 +818,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -853,7 +854,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index cec76af33886988a42b49ad2f22782586834c501..9b6f41ee0fe67bddfc54b5837aa9e31092a08fe2 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -197,7 +197,7 @@ msgstr ""
 msgid "Countries"
 msgstr "Országok"
 
 msgid "Countries"
 msgstr "Országok"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -215,7 +215,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "Leírás"
 
 msgid "Description"
 msgstr "Leírás"
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -294,8 +294,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -323,7 +323,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -339,11 +339,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -389,11 +389,11 @@ msgstr ""
 msgid "Information"
 msgstr "Információ"
 
 msgid "Information"
 msgstr "Információ"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -571,8 +571,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -615,11 +615,11 @@ msgstr ""
 msgid "Result"
 msgstr "Eredmény"
 
 msgid "Result"
 msgstr "Eredmény"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -631,7 +631,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -812,11 +812,11 @@ msgstr "Aktiváló késleltetése"
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -825,12 +825,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -860,7 +861,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index 26ecc58c79a0ca7a64c38394dfc202d40446937a..7eeac782378245220410ffae4dd817a19eccc40a 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -197,7 +197,7 @@ msgstr ""
 msgid "Countries"
 msgstr ""
 
 msgid "Countries"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -215,7 +215,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "Descrizione"
 
 msgid "Description"
 msgstr "Descrizione"
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr "Non controllare i certificati del server SSL durante il download."
 
 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:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -293,8 +293,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -322,7 +322,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -330,7 +330,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -338,11 +338,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -388,11 +388,11 @@ msgstr ""
 msgid "Information"
 msgstr "Informazioni"
 
 msgid "Information"
 msgstr "Informazioni"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -570,8 +570,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -614,11 +614,11 @@ msgstr ""
 msgid "Result"
 msgstr "Risultato"
 
 msgid "Result"
 msgstr "Risultato"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -630,7 +630,7 @@ msgstr "Avvia Flags"
 msgid "Run Information"
 msgstr ""
 
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -811,11 +811,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -824,12 +824,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -859,7 +860,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index d65232b46d37e2ec422293c4c1c905881891c50e..13083f65d890b022fd29389af31fc4051085c499 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -197,7 +197,7 @@ msgstr ""
 msgid "Countries"
 msgstr "国"
 
 msgid "Countries"
 msgstr "国"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -215,7 +215,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "説明"
 
 msgid "Description"
 msgstr "説明"
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -293,8 +293,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -322,7 +322,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -330,7 +330,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -338,11 +338,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -388,11 +388,11 @@ msgstr ""
 msgid "Information"
 msgstr "情報"
 
 msgid "Information"
 msgstr "情報"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -570,8 +570,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -614,11 +614,11 @@ msgstr ""
 msgid "Result"
 msgstr "結果"
 
 msgid "Result"
 msgstr "結果"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -630,7 +630,7 @@ msgstr "実行フラグ"
 msgid "Run Information"
 msgstr "実行情報"
 
 msgid "Run Information"
 msgstr "実行情報"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -811,11 +811,11 @@ msgstr "トリガ遅延"
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -824,12 +824,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -859,7 +860,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index 8259e8c836b79d70ba0d35ba8e42d72d1e50b051..54981a9a939ac567a7788dba3897506032aeef6a 100644 (file)
@@ -181,7 +181,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -198,7 +198,7 @@ msgstr ""
 msgid "Countries"
 msgstr ""
 
 msgid "Countries"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -216,7 +216,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "설명"
 
 msgid "Description"
 msgstr "설명"
 
@@ -234,7 +234,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -294,8 +294,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -323,7 +323,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -339,11 +339,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -389,11 +389,11 @@ msgstr ""
 msgid "Information"
 msgstr "정보"
 
 msgid "Information"
 msgstr "정보"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -571,8 +571,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -615,11 +615,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -631,7 +631,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -812,11 +812,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -825,12 +825,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -860,7 +861,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index 71fdd33d49ee5809cfc93bec32276a4e90fd8480..0479b3dcef60c590f5b790a903e4c9c128bbfd07 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -197,7 +197,7 @@ msgstr ""
 msgid "Countries"
 msgstr ""
 
 msgid "Countries"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -215,7 +215,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "वर्णन"
 
 msgid "Description"
 msgstr "वर्णन"
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -293,8 +293,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -322,7 +322,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -330,7 +330,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -338,11 +338,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -388,11 +388,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -570,8 +570,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -614,11 +614,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -630,7 +630,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -811,11 +811,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -824,12 +824,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -859,7 +860,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index 40555ffa5f470dfc6839a680c71c74057fdb07ed..842604687dcdd0fc9192f130b1851001dde9c516 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -197,7 +197,7 @@ msgstr ""
 msgid "Countries"
 msgstr ""
 
 msgid "Countries"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -215,7 +215,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "Keterangan"
 
 msgid "Description"
 msgstr "Keterangan"
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -293,8 +293,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -322,7 +322,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -330,7 +330,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -338,11 +338,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -388,11 +388,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -570,8 +570,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -614,11 +614,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -630,7 +630,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -811,11 +811,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -824,12 +824,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -859,7 +860,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index a95519b15b329586d799fa434d6a158dff9fcdce..81c7c23948a4eb2509a3d2f917d9a11edcac7462 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -197,7 +197,7 @@ msgstr ""
 msgid "Countries"
 msgstr ""
 
 msgid "Countries"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -215,7 +215,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "Beskrivelse"
 
 msgid "Description"
 msgstr "Beskrivelse"
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -293,8 +293,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -322,7 +322,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -330,7 +330,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -338,11 +338,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -388,11 +388,11 @@ msgstr ""
 msgid "Information"
 msgstr "Info"
 
 msgid "Information"
 msgstr "Info"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -570,8 +570,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -614,11 +614,11 @@ msgstr ""
 msgid "Result"
 msgstr "Resultat"
 
 msgid "Result"
 msgstr "Resultat"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -631,7 +631,7 @@ msgstr "Kjøringsflagg"
 msgid "Run Information"
 msgstr ""
 
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -812,11 +812,11 @@ msgstr "Utløserforsinkelse"
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -825,12 +825,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -860,7 +861,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index 0dbd8a19394fd090e7918a6cb5170e69beb06e60..b6a7d971b13121b56a18ed81f20a474b64898f3f 100644 (file)
@@ -188,7 +188,7 @@ msgstr ""
 "Wijzigingen op dit tabblad hebben een herstart van de banIP-service nodig om "
 "van kracht te worden."
 
 "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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -210,7 +210,7 @@ msgstr ""
 msgid "Countries"
 msgstr "Landen"
 
 msgid "Countries"
 msgstr "Landen"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -230,7 +230,7 @@ msgstr "IP's ontdubbelen"
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr ""
 
 msgid "Description"
 msgstr ""
 
@@ -250,7 +250,7 @@ msgstr "Domein opzoeken"
 msgid "Don't check SSL server certificates during download."
 msgstr "Tijdens download niet de SSL server certificaten controleren."
 
 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:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -310,8 +310,8 @@ msgstr "Aantal elementen"
 msgid "Elements"
 msgstr "Elementen"
 
 msgid "Elements"
 msgstr "Elementen"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -341,7 +341,7 @@ msgstr "Schakelt IPv6-ondersteuning in."
 msgid "Expiry time for auto added blocklist set members."
 msgstr "Vervaltijd voor automatisch toegevoegde leden van de blokkeerlijstset."
 
 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:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -349,7 +349,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr "Feed selectie"
 
 msgid "Feed Selection"
 msgstr "Feed selectie"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -357,11 +357,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr "Firewall-logboek"
 
 msgid "Firewall Log"
 msgstr "Firewall-logboek"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -409,11 +409,11 @@ msgstr ""
 msgid "Information"
 msgstr "Informatie"
 
 msgid "Information"
 msgstr "Informatie"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -599,8 +599,8 @@ msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 "Profiel gebruikt voor 'msmtp' voor banIP E-Mail berichten/notificaties."
 
 msgstr ""
 "Profiel gebruikt voor 'msmtp' voor banIP E-Mail berichten/notificaties."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -645,11 +645,11 @@ msgstr "Beperk de internettoegang van/tot een klein aantal beveiligde IP's."
 msgid "Result"
 msgstr "Resultaat"
 
 msgid "Result"
 msgstr "Resultaat"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -661,7 +661,7 @@ msgstr "Vlaggen uitvoeren"
 msgid "Run Information"
 msgstr "Informatie uitvoeren"
 
 msgid "Run Information"
 msgstr "Informatie uitvoeren"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -862,11 +862,11 @@ msgstr "Trigger vertraging"
 msgid "Trigger action on ifup interface events."
 msgstr "Activeer actie op ifup-interfacegebeurtenissen."
 
 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:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -875,12 +875,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr "Kan wijzigingen niet opslaan: %s"
 
 msgid "Unable to save modifications: %s"
 msgstr "Kan wijzigingen niet opslaan: %s"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -910,7 +911,7 @@ msgstr "WAN-invoer (pakketten)"
 msgid "WAN-Input Chain"
 msgstr "WAN-invoer reeks"
 
 msgid "WAN-Input Chain"
 msgstr "WAN-invoer reeks"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index 467662dcb2157e678f788c95f9a9fef0f2293afe..c56b218a07ca3b9d8bdb898e59510c12ccfcc9bf 100644 (file)
@@ -192,7 +192,7 @@ msgstr ""
 "Zmiany na tej karcie wymagają ponownego uruchomienia usługi banIP, aby "
 "zostały zastosowane."
 
 "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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr "Wyczyść źródła niestandardowe"
 
 msgid "Clear Custom Feeds"
 msgstr "Wyczyść źródła niestandardowe"
 
@@ -214,7 +214,7 @@ msgstr ""
 msgid "Countries"
 msgstr "Kraje"
 
 msgid "Countries"
 msgstr "Kraje"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr "Edytor źródeł niestandardowych"
 
 msgid "Custom Feed Editor"
 msgstr "Edytor źródeł niestandardowych"
 
@@ -234,7 +234,7 @@ msgstr "Deduplikacja adresów IP"
 msgid "Default Block Policy"
 msgstr "Domyślne zasady blokowania"
 
 msgid "Default Block Policy"
 msgstr "Domyślne zasady blokowania"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "Opis"
 
 msgid "Description"
 msgstr "Opis"
 
@@ -254,7 +254,7 @@ msgstr "Wyszukiwanie domen"
 msgid "Don't check SSL server certificates during download."
 msgstr "Nie sprawdzaj certyfikatów SSL serwera podczas pobierania."
 
 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:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr "Pobierz źródła niestandardowe"
 
 msgid "Download Custom Feeds"
 msgstr "Pobierz źródła niestandardowe"
 
@@ -314,8 +314,8 @@ msgstr "Liczba elementów"
 msgid "Elements"
 msgstr "Elementy"
 
 msgid "Elements"
 msgstr "Elementy"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr "Puste pole jest niedozwolone"
 
 msgid "Empty field not allowed"
 msgstr "Puste pole jest niedozwolone"
 
@@ -345,7 +345,7 @@ msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 "Czas wygaśnięcia automatycznie dodanych członków zestawu listy zablokowanych."
 
 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:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr "Nazwa źródła"
 
 msgid "Feed Name"
 msgstr "Nazwa źródła"
 
@@ -353,7 +353,7 @@ msgstr "Nazwa źródła"
 msgid "Feed Selection"
 msgstr "Wybór źródeł"
 
 msgid "Feed Selection"
 msgstr "Wybór źródeł"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr "Wypełnij źródła niestandardowe"
 
 msgid "Fill Custom Feeds"
 msgstr "Wypełnij źródła niestandardowe"
 
@@ -361,11 +361,11 @@ msgstr "Wypełnij źródła niestandardowe"
 msgid "Firewall Log"
 msgstr "Dziennik zapory"
 
 msgid "Firewall Log"
 msgstr "Dziennik zapory"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr "Flaga"
 
 msgid "Flag"
 msgstr "Flaga"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr "Flaga jest nieobsługiwana"
 
 msgid "Flag not supported"
 msgstr "Flaga jest nieobsługiwana"
 
@@ -413,11 +413,11 @@ msgstr ""
 msgid "Information"
 msgstr "Informacje"
 
 msgid "Information"
 msgstr "Informacje"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr "Nieprawidłowe znaki"
 
 msgid "Invalid characters"
 msgstr "Nieprawidłowe znaki"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr "Nieprawidłowe wartości wejściowe, nie można zapisać zmian."
 
 msgid "Invalid input values, unable to save modifications."
 msgstr "Nieprawidłowe wartości wejściowe, nie można zapisać zmian."
 
@@ -608,8 +608,8 @@ msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 "Profil używany przez \"msmtp\" dla wiadomości e-mail z powiadomieniem banIP."
 
 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:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr "Format protokołu/adresu URL jest nieobsługiwany"
 
 msgid "Protocol/URL format not supported"
 msgstr "Format protokołu/adresu URL jest nieobsługiwany"
 
@@ -655,11 +655,11 @@ msgstr ""
 msgid "Result"
 msgstr "Wynik"
 
 msgid "Result"
 msgstr "Wynik"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr "Regułav4"
 
 msgid "Rulev4"
 msgstr "Regułav4"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr "Regułav6"
 
 msgid "Rulev6"
 msgstr "Regułav6"
 
@@ -671,7 +671,7 @@ msgstr "Flagi uruchomieniowe"
 msgid "Run Information"
 msgstr "Informacje uruchomieniowe"
 
 msgid "Run Information"
 msgstr "Informacje uruchomieniowe"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr "Zapisz źródła niestandardowe"
 
 msgid "Save Custom Feeds"
 msgstr "Zapisz źródła niestandardowe"
 
@@ -872,11 +872,11 @@ msgstr "Opóźnienie wyzwalacza"
 msgid "Trigger action on ifup interface events."
 msgstr "Wyzwalanie akcji przy zdarzeniach interfejsu ifup."
 
 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:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr "URLv4"
 
 msgid "URLv4"
 msgstr "URLv4"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr "URLv6"
 
 msgid "URLv6"
 msgstr "URLv6"
 
@@ -885,12 +885,13 @@ msgstr "URLv6"
 msgid "Unable to save modifications: %s"
 msgstr "Nie można zapisać modyfikacji: %s"
 
 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:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr "Prześlij źródła niestandardowe"
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr "Prześlij źródła niestandardowe"
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr "Przesyłanie pliku źródeł niestandardowych nie powiodło się."
 
 msgid "Upload of the custom feed file failed."
 msgstr "Przesyłanie pliku źródeł niestandardowych nie powiodło się."
 
@@ -920,7 +921,7 @@ msgstr "Wejście WAN (pakiety)"
 msgid "WAN-Input Chain"
 msgstr "Łańcuch wejścia WAN"
 
 msgid "WAN-Input Chain"
 msgstr "Łańcuch wejścia WAN"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index e9d4d047d294daa7d04dfebdcadc3c1ecc7e1dcb..e02aacf86180fc0b3b5bd563bfd37ed0b98838ed 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."
 
 "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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -213,7 +213,7 @@ msgstr ""
 msgid "Countries"
 msgstr "Países"
 
 msgid "Countries"
 msgstr "Países"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -233,7 +233,7 @@ msgstr "Eliminar IPs duplicados"
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "Descrição"
 
 msgid "Description"
 msgstr "Descrição"
 
@@ -253,7 +253,7 @@ msgstr "Busca por domínio"
 msgid "Don't check SSL server certificates during download."
 msgstr "Não verificar os certificados de SSL do servidor durante a descarrega."
 
 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:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -313,8 +313,8 @@ msgstr "Contagem dos elementos"
 msgid "Elements"
 msgstr "Elementos"
 
 msgid "Elements"
 msgstr "Elementos"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -345,7 +345,7 @@ msgstr ""
 "Tempo de expiração para os membros do conjunto de lista de bloqueio que "
 "foram adicionados automaticamente."
 
 "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:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -353,7 +353,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr "Seleção do feed"
 
 msgid "Feed Selection"
 msgstr "Seleção do feed"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -361,11 +361,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr "Registo do firewall"
 
 msgid "Firewall Log"
 msgstr "Registo do firewall"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -414,11 +414,11 @@ msgstr ""
 msgid "Information"
 msgstr "Informação"
 
 msgid "Information"
 msgstr "Informação"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -604,8 +604,8 @@ msgstr "Registo de processamento"
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr "O perfil usado pelo 'msmtp' para os e-mails de notificação do banIP."
 
 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:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -651,11 +651,11 @@ msgstr ""
 msgid "Result"
 msgstr "Resultado"
 
 msgid "Result"
 msgstr "Resultado"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -667,7 +667,7 @@ msgstr "Flags de Execução"
 msgid "Run Information"
 msgstr "Informações de Execução"
 
 msgid "Run Information"
 msgstr "Informações de Execução"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -873,11 +873,11 @@ msgstr "Atraso do Gatilho"
 msgid "Trigger action on ifup interface events."
 msgstr "Acione a ação nos eventos da interface ifup."
 
 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:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -886,12 +886,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr "Não foi possível salvar as alterações: %s"
 
 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:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -921,7 +922,7 @@ msgstr "WAN-Input (pacotes)"
 msgid "WAN-Input Chain"
 msgstr "Cadeia WAN-Input"
 
 msgid "WAN-Input Chain"
 msgstr "Cadeia WAN-Input"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index 6c8a4d6051c668283f8d64b046d1d996fbed5e60..c7ab782ce5ad02384eb3203997e4fec799f7c8d8 100644 (file)
@@ -193,7 +193,7 @@ msgstr ""
 "As alterações nesta guia precisam de uma reinicialização do serviço banIP "
 "para entrar em vigor."
 
 "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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr "Limpar os feeds personalizados"
 
 msgid "Clear Custom Feeds"
 msgstr "Limpar os feeds personalizados"
 
@@ -215,7 +215,7 @@ msgstr ""
 msgid "Countries"
 msgstr "Países"
 
 msgid "Countries"
 msgstr "Países"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr "Editor do feed personalizado"
 
 msgid "Custom Feed Editor"
 msgstr "Editor do feed personalizado"
 
@@ -235,7 +235,7 @@ msgstr "Eliminar IPs duplicados"
 msgid "Default Block Policy"
 msgstr "Política de bloqueio padrão"
 
 msgid "Default Block Policy"
 msgstr "Política de bloqueio padrão"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "Descrição"
 
 msgid "Description"
 msgstr "Descrição"
 
@@ -255,7 +255,7 @@ msgstr "Busca por domínio"
 msgid "Don't check SSL server certificates during download."
 msgstr "Não verifique os certificados do servidor SSL durante o download."
 
 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:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr "Baixar feeds personalizados"
 
 msgid "Download Custom Feeds"
 msgstr "Baixar feeds personalizados"
 
@@ -315,8 +315,8 @@ msgstr "Contagem dos elementos"
 msgid "Elements"
 msgstr "Elementos"
 
 msgid "Elements"
 msgstr "Elementos"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr "Campo vazio não permitido"
 
 msgid "Empty field not allowed"
 msgstr "Campo vazio não permitido"
 
@@ -347,7 +347,7 @@ msgstr ""
 "Tempo de expiração para os membros do conjunto de lista de bloqueio que "
 "foram adicionados automaticamente."
 
 "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:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr "Nome do feed"
 
 msgid "Feed Name"
 msgstr "Nome do feed"
 
@@ -355,7 +355,7 @@ msgstr "Nome do feed"
 msgid "Feed Selection"
 msgstr "Seleção do feed"
 
 msgid "Feed Selection"
 msgstr "Seleção do feed"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr "Preencher os feeds personalizados"
 
 msgid "Fill Custom Feeds"
 msgstr "Preencher os feeds personalizados"
 
@@ -363,11 +363,11 @@ msgstr "Preencher os feeds personalizados"
 msgid "Firewall Log"
 msgstr "Registro do firewall"
 
 msgid "Firewall Log"
 msgstr "Registro do firewall"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr "Sinalizador"
 
 msgid "Flag"
 msgstr "Sinalizador"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr "Sinalizador não suportado"
 
 msgid "Flag not supported"
 msgstr "Sinalizador não suportado"
 
@@ -416,11 +416,11 @@ msgstr ""
 msgid "Information"
 msgstr "Informações"
 
 msgid "Information"
 msgstr "Informações"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr "Caracteres inválidos"
 
 msgid "Invalid characters"
 msgstr "Caracteres inválidos"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr "Valores inválidos da entrada, não é possível salvar as alterações."
 
 msgid "Invalid input values, unable to save modifications."
 msgstr "Valores inválidos da entrada, não é possível salvar as alterações."
 
@@ -609,8 +609,8 @@ msgstr "Registro de processamento"
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr "O perfil usado pelo 'msmtp' para os e-mails de notificação do banIP."
 
 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:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr "Formato de protocolo/URL não suportado"
 
 msgid "Protocol/URL format not supported"
 msgstr "Formato de protocolo/URL não suportado"
 
@@ -656,11 +656,11 @@ msgstr ""
 msgid "Result"
 msgstr "Resultado"
 
 msgid "Result"
 msgstr "Resultado"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr "Rulev4"
 
 msgid "Rulev4"
 msgstr "Rulev4"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr "Rulev6"
 
 msgid "Rulev6"
 msgstr "Rulev6"
 
@@ -672,7 +672,7 @@ msgstr "Executar Flags"
 msgid "Run Information"
 msgstr "Informações de Execução"
 
 msgid "Run Information"
 msgstr "Informações de Execução"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr "Salvar os feeds personalizados"
 
 msgid "Save Custom Feeds"
 msgstr "Salvar os feeds personalizados"
 
@@ -878,11 +878,11 @@ msgstr "Gatilho de Atraso"
 msgid "Trigger action on ifup interface events."
 msgstr "Acione a ação nos eventos da interface ifup."
 
 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:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr "URLv4"
 
 msgid "URLv4"
 msgstr "URLv4"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr "URLv6"
 
 msgid "URLv6"
 msgstr "URLv6"
 
@@ -891,12 +891,13 @@ msgstr "URLv6"
 msgid "Unable to save modifications: %s"
 msgstr "Não foi possível salvar as alterações: %s"
 
 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:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr "Fazer upload dos feeds personalizados"
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr "Fazer upload dos feeds personalizados"
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr "O upload do arquivo com os feeds personalizados falhou."
 
 msgid "Upload of the custom feed file failed."
 msgstr "O upload do arquivo com os feeds personalizados falhou."
 
@@ -926,7 +927,7 @@ msgstr "WAN-Input (pacotes)"
 msgid "WAN-Input Chain"
 msgstr "Cadeia WAN-Input"
 
 msgid "WAN-Input Chain"
 msgstr "Cadeia WAN-Input"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index 51684e41affd22a07a2569b9cd7eacd568d319ea..0f41aba3dd05be85202ca889712af97a26606b76 100644 (file)
@@ -190,7 +190,7 @@ msgstr ""
 "Modificările din această filă necesită o repornire a serviciului banIP "
 "pentru a intra în vigoare."
 
 "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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -212,7 +212,7 @@ msgstr ""
 msgid "Countries"
 msgstr "Țări"
 
 msgid "Countries"
 msgstr "Țări"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -232,7 +232,7 @@ msgstr "Deduplicați IP-uri"
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "Descriere"
 
 msgid "Description"
 msgstr "Descriere"
 
@@ -252,7 +252,7 @@ msgstr "Căutare domeniu"
 msgid "Don't check SSL server certificates during download."
 msgstr "Nu verificați certificatele serverului SSL în timpul descărcării."
 
 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:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -312,8 +312,8 @@ msgstr "Număr de elemente"
 msgid "Elements"
 msgstr "Elemente"
 
 msgid "Elements"
 msgstr "Elemente"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -344,7 +344,7 @@ msgstr ""
 "Timpul de expirare pentru membrii setului de liste de blocare adăugate "
 "automat."
 
 "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:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -352,7 +352,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr "Selecția Feed"
 
 msgid "Feed Selection"
 msgstr "Selecția Feed"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -360,11 +360,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr "Jurnal Firewall"
 
 msgid "Firewall Log"
 msgstr "Jurnal Firewall"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -412,11 +412,11 @@ msgstr ""
 msgid "Information"
 msgstr "Informație"
 
 msgid "Information"
 msgstr "Informație"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -602,8 +602,8 @@ msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 "Profilul utilizat de 'msmtp' pentru mesajele electronice de notificare banIP."
 
 msgstr ""
 "Profilul utilizat de 'msmtp' pentru mesajele electronice de notificare banIP."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -650,11 +650,11 @@ msgstr ""
 msgid "Result"
 msgstr "Rezultat"
 
 msgid "Result"
 msgstr "Rezultat"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -666,7 +666,7 @@ msgstr "Fixați indicatoarele"
 msgid "Run Information"
 msgstr "Informații despre cursă"
 
 msgid "Run Information"
 msgstr "Informații despre cursă"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -868,11 +868,11 @@ msgstr "Intârzierea declanșării"
 msgid "Trigger action on ifup interface events."
 msgstr "Acțiune de declanșare a evenimentelor de interfață ifup."
 
 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:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -881,12 +881,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr "Imposibilitatea de a salva modificările: %s"
 
 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:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -916,7 +917,7 @@ msgstr "WAN-Input (pachete)"
 msgid "WAN-Input Chain"
 msgstr "Chain WAN-Input"
 
 msgid "WAN-Input Chain"
 msgstr "Chain WAN-Input"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index 26debe17e550023da81ab4210d8a692845872ae4..64d3385b997ec28de4e893041dd93efc2bc42d18 100644 (file)
@@ -194,7 +194,7 @@ msgstr ""
 "Для вступления в силу изменений на этой вкладке требуется перезапуск службы "
 "banIP."
 
 "Для вступления в силу изменений на этой вкладке требуется перезапуск службы "
 "banIP."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr "Очистить пользовательские каналы"
 
 msgid "Clear Custom Feeds"
 msgstr "Очистить пользовательские каналы"
 
@@ -216,7 +216,7 @@ msgstr ""
 msgid "Countries"
 msgstr "Страны"
 
 msgid "Countries"
 msgstr "Страны"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr "Пользовательский редактор каналов"
 
 msgid "Custom Feed Editor"
 msgstr "Пользовательский редактор каналов"
 
@@ -236,7 +236,7 @@ msgstr "Дублирование IP-адресов"
 msgid "Default Block Policy"
 msgstr "Политика блокировки по умолчанию"
 
 msgid "Default Block Policy"
 msgstr "Политика блокировки по умолчанию"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "Описание"
 
 msgid "Description"
 msgstr "Описание"
 
@@ -256,7 +256,7 @@ msgstr "Поиск домена"
 msgid "Don't check SSL server certificates during download."
 msgstr "Не проверять SSL сертификаты сервера во время загрузки."
 
 msgid "Don't check SSL server certificates during download."
 msgstr "Не проверять SSL сертификаты сервера во время загрузки."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr "Скачать пользовательские каналы"
 
 msgid "Download Custom Feeds"
 msgstr "Скачать пользовательские каналы"
 
@@ -316,8 +316,8 @@ msgstr "Количество элементов"
 msgid "Elements"
 msgstr "Элементы"
 
 msgid "Elements"
 msgstr "Элементы"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr "Пустое поле не допускается"
 
 msgid "Empty field not allowed"
 msgstr "Пустое поле не допускается"
 
@@ -347,7 +347,7 @@ msgstr ""
 "Время истечения срока действия для автоматически добавляемых членов набора "
 "списков блокировки."
 
 "Время истечения срока действия для автоматически добавляемых членов набора "
 "списков блокировки."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr "Название канала"
 
 msgid "Feed Name"
 msgstr "Название канала"
 
@@ -355,7 +355,7 @@ msgstr "Название канала"
 msgid "Feed Selection"
 msgstr "Выбор канала"
 
 msgid "Feed Selection"
 msgstr "Выбор канала"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr "Заполнить пользовательские каналы"
 
 msgid "Fill Custom Feeds"
 msgstr "Заполнить пользовательские каналы"
 
@@ -363,11 +363,11 @@ msgstr "Заполнить пользовательские каналы"
 msgid "Firewall Log"
 msgstr "Журнал Firewall"
 
 msgid "Firewall Log"
 msgstr "Журнал Firewall"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr "Флаг"
 
 msgid "Flag"
 msgstr "Флаг"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr "Флаг не поддерживается"
 
 msgid "Flag not supported"
 msgstr "Флаг не поддерживается"
 
@@ -415,11 +415,11 @@ msgstr ""
 msgid "Information"
 msgstr "Информация"
 
 msgid "Information"
 msgstr "Информация"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr "Недопустимые символы"
 
 msgid "Invalid characters"
 msgstr "Недопустимые символы"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr "Недопустимые входные значения, невозможно сохранить изменения."
 
 msgid "Invalid input values, unable to save modifications."
 msgstr "Недопустимые входные значения, невозможно сохранить изменения."
 
@@ -611,8 +611,8 @@ msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 "Профиль, используемый 'msmtp' для электронной почты с уведомлением banIP."
 
 msgstr ""
 "Профиль, используемый 'msmtp' для электронной почты с уведомлением banIP."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr "Формат протокола/URL не поддерживается"
 
 msgid "Protocol/URL format not supported"
 msgstr "Формат протокола/URL не поддерживается"
 
@@ -658,11 +658,11 @@ msgstr ""
 msgid "Result"
 msgstr "Результат"
 
 msgid "Result"
 msgstr "Результат"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr "Rulev4"
 
 msgid "Rulev4"
 msgstr "Rulev4"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr "Rulev6"
 
 msgid "Rulev6"
 msgstr "Rulev6"
 
@@ -674,7 +674,7 @@ msgstr "Флаги запуска"
 msgid "Run Information"
 msgstr "Информация о запуске"
 
 msgid "Run Information"
 msgstr "Информация о запуске"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr "Сохранить пользовательские каналы"
 
 msgid "Save Custom Feeds"
 msgstr "Сохранить пользовательские каналы"
 
@@ -875,11 +875,11 @@ msgstr "Задержка запуска"
 msgid "Trigger action on ifup interface events."
 msgstr "Действие, выполняемое при поднятии интерфейса (ifup)."
 
 msgid "Trigger action on ifup interface events."
 msgstr "Действие, выполняемое при поднятии интерфейса (ifup)."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr "URLv4"
 
 msgid "URLv4"
 msgstr "URLv4"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr "URLv6"
 
 msgid "URLv6"
 msgstr "URLv6"
 
@@ -888,12 +888,13 @@ msgstr "URLv6"
 msgid "Unable to save modifications: %s"
 msgstr "Невозможно сохранить изменения: %s"
 
 msgid "Unable to save modifications: %s"
 msgstr "Невозможно сохранить изменения: %s"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr "Загрузить пользовательские каналы"
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr "Загрузить пользовательские каналы"
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr "Загрузка файла пользовательского канала не удалась."
 
 msgid "Upload of the custom feed file failed."
 msgstr "Загрузка файла пользовательского канала не удалась."
 
@@ -923,7 +924,7 @@ msgstr "WAN-Input (пакеты)"
 msgid "WAN-Input Chain"
 msgstr "Цепочка WAN-Input"
 
 msgid "WAN-Input Chain"
 msgstr "Цепочка WAN-Input"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
@@ -934,10 +935,10 @@ msgid ""
 msgstr ""
 "С помощью этого редактора вы можете загрузить свой локальный файл "
 "пользовательских каналов или заполнить начальный файл (копия 1:1 версии, "
 msgstr ""
 "С помощью этого редактора вы можете загрузить свой локальный файл "
 "пользовательских каналов или заполнить начальный файл (копия 1:1 версии, "
-"поставляемой с пакетом). Файл находится по адресу '/etc/banip/"
-"banip.custom.feeds'. Затем вы можете редактировать этот файл, удалять "
-"запиÑ\81и, Ð´Ð¾Ð±Ð°Ð²Ð»Ñ\8fÑ\82Ñ\8c Ð½Ð¾Ð²Ñ\8bе Ð¸Ð»Ð¸ Ð´ÐµÐ»Ð°Ñ\82Ñ\8c Ð»Ð¾ÐºÐ°Ð»Ñ\8cнÑ\83Ñ\8e Ñ\80езеÑ\80внÑ\83Ñ\8e ÐºÐ¾Ð¿Ð¸Ñ\8e. Ð§Ñ\82обÑ\8b "
-"веÑ\80нÑ\83Ñ\82Ñ\8cÑ\81Ñ\8f Ð¸Ñ\81Ñ\85одной Ð²ÐµÑ\80Ñ\81ии, Ð·Ð°Ð³Ñ\80Ñ\83зиÑ\82е Ð¿Ñ\83Ñ\81Ñ\82ой Ñ\84айл (не Ñ\83далÑ\8fйÑ\82е ÐµÐ³Ð¾!)."
+"поставляемой с пакетом). Файл находится по адресу '/etc/banip/banip.custom."
+"feeds'. Затем вы можете редактировать этот файл, удалять записи, добавлять "
+"новÑ\8bе Ð¸Ð»Ð¸ Ð´ÐµÐ»Ð°Ñ\82Ñ\8c Ð»Ð¾ÐºÐ°Ð»Ñ\8cнÑ\83Ñ\8e Ñ\80езеÑ\80внÑ\83Ñ\8e ÐºÐ¾Ð¿Ð¸Ñ\8e. Ð§Ñ\82обÑ\8b Ð²ÐµÑ\80нÑ\83Ñ\82Ñ\8cÑ\81Ñ\8f Ð¸Ñ\81Ñ\85одной Ð²ÐµÑ\80Ñ\81ии, "
+"загрузите пустой файл (не удаляйте его!)."
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
 msgid "alert"
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:482
 msgid "alert"
index d6e871fb99cbb01ce4d6f6a794be86fb6d02e5d0..d819b7c77d31c0cbcf7d68d2290758019660411e 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -197,7 +197,7 @@ msgstr ""
 msgid "Countries"
 msgstr ""
 
 msgid "Countries"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -215,7 +215,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "Popis"
 
 msgid "Description"
 msgstr "Popis"
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -293,8 +293,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -322,7 +322,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -330,7 +330,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -338,11 +338,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -388,11 +388,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -570,8 +570,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -614,11 +614,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -630,7 +630,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -811,11 +811,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -824,12 +824,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -859,7 +860,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index e39e4f2eaa97e57b75190c58b903c19db3c83338..b2d74743a24585573cc5f5fc155397674c793fa1 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -197,7 +197,7 @@ msgstr ""
 msgid "Countries"
 msgstr ""
 
 msgid "Countries"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -215,7 +215,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "Beskrivning"
 
 msgid "Description"
 msgstr "Beskrivning"
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -293,8 +293,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -322,7 +322,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -330,7 +330,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -338,11 +338,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -388,11 +388,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -570,8 +570,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -614,11 +614,11 @@ msgstr ""
 msgid "Result"
 msgstr "Resultat"
 
 msgid "Result"
 msgstr "Resultat"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -630,7 +630,7 @@ msgstr "Förflaggor"
 msgid "Run Information"
 msgstr ""
 
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -811,11 +811,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -824,12 +824,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -859,7 +860,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index f4aa8f75403a6ddd5f7af9ffa036446d0690c115..82f90dc20c1e60b9821ad992a8615c231cb2e0c0 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -197,7 +197,7 @@ msgstr ""
 msgid "Countries"
 msgstr ""
 
 msgid "Countries"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -215,7 +215,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr ""
 
 msgid "Description"
 msgstr ""
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -293,8 +293,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -322,7 +322,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -330,7 +330,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -338,11 +338,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -388,11 +388,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -570,8 +570,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -614,11 +614,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -630,7 +630,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -811,11 +811,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -824,12 +824,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -859,7 +860,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index c2d19f819b568eb903c362c2393075323dfcddca..b267f1897731c185c82b265e59bd5d365eff806e 100644 (file)
@@ -171,7 +171,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -188,7 +188,7 @@ msgstr ""
 msgid "Countries"
 msgstr ""
 
 msgid "Countries"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -206,7 +206,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr ""
 
 msgid "Description"
 msgstr ""
 
@@ -224,7 +224,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -284,8 +284,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -313,7 +313,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -321,7 +321,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -329,11 +329,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -379,11 +379,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -561,8 +561,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -605,11 +605,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -621,7 +621,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -802,11 +802,11 @@ msgstr ""
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -815,12 +815,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -850,7 +851,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index 9911a5f418941e1703fdbf1551d2d7b7f4ec131e..5da49ab24a8e59e0a5729e0c7f295ceb90a101d0 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -197,7 +197,7 @@ msgstr ""
 msgid "Countries"
 msgstr "Ülkeler"
 
 msgid "Countries"
 msgstr "Ülkeler"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -215,7 +215,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "Açıklama"
 
 msgid "Description"
 msgstr "Açıklama"
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr "İndirme sırasında SSL sunucu sertifikalarını kontrol etme."
 
 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:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -293,8 +293,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -322,7 +322,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -330,7 +330,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -338,11 +338,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -388,11 +388,11 @@ msgstr ""
 msgid "Information"
 msgstr "Bilgi"
 
 msgid "Information"
 msgstr "Bilgi"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -570,8 +570,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr "BanIP bildirim e-postaları için 'msmtp' tarafından kullanılan profil."
 
 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:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -614,11 +614,11 @@ msgstr ""
 msgid "Result"
 msgstr "Sonuç"
 
 msgid "Result"
 msgstr "Sonuç"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -630,7 +630,7 @@ msgstr "Bayrakları Çalıştır"
 msgid "Run Information"
 msgstr "Çalıştırma Bilgileri"
 
 msgid "Run Information"
 msgstr "Çalıştırma Bilgileri"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -811,11 +811,11 @@ msgstr "Tetikleme Gecikmesi"
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -824,12 +824,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -859,7 +860,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index 399ef29b25cc4d03d02cd0bd3ba376f683ef9cb8..02fe53d679dadf50daa5bdf4941b1d380fb4d2b8 100644 (file)
@@ -181,7 +181,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -198,7 +198,7 @@ msgstr ""
 msgid "Countries"
 msgstr ""
 
 msgid "Countries"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -216,7 +216,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "Опис"
 
 msgid "Description"
 msgstr "Опис"
 
@@ -234,7 +234,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr "Не перевіряти SSL-сертифікати сервера під час завантаження."
 
 msgid "Don't check SSL server certificates during download."
 msgstr "Не перевіряти SSL-сертифікати сервера під час завантаження."
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -294,8 +294,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -323,7 +323,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -331,7 +331,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -339,11 +339,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -389,11 +389,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -571,8 +571,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -615,11 +615,11 @@ msgstr ""
 msgid "Result"
 msgstr "Результат"
 
 msgid "Result"
 msgstr "Результат"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -631,7 +631,7 @@ msgstr "Прапорці запуску"
 msgid "Run Information"
 msgstr ""
 
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -812,11 +812,11 @@ msgstr "Затримка запуску"
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -825,12 +825,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -860,7 +861,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index d8c9ad25b2836f173f736aa3f414c9898499a0b7..0b74d7e88429ce24a672421603cd768921198c46 100644 (file)
@@ -180,7 +180,7 @@ msgstr ""
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -197,7 +197,7 @@ msgstr ""
 msgid "Countries"
 msgstr ""
 
 msgid "Countries"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -215,7 +215,7 @@ msgstr ""
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "Mô tả"
 
 msgid "Description"
 msgstr "Mô tả"
 
@@ -233,7 +233,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
 msgid "Don't check SSL server certificates during download."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -293,8 +293,8 @@ msgstr ""
 msgid "Elements"
 msgstr ""
 
 msgid "Elements"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -322,7 +322,7 @@ msgstr ""
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -330,7 +330,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr ""
 
 msgid "Feed Selection"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -338,11 +338,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr ""
 
 msgid "Firewall Log"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -388,11 +388,11 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -570,8 +570,8 @@ msgstr ""
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -614,11 +614,11 @@ msgstr ""
 msgid "Result"
 msgstr ""
 
 msgid "Result"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -630,7 +630,7 @@ msgstr ""
 msgid "Run Information"
 msgstr ""
 
 msgid "Run Information"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -811,11 +811,11 @@ msgstr "Kích hoạt độ trễ"
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -824,12 +824,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr ""
 
 msgid "Unable to save modifications: %s"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -860,7 +861,7 @@ msgstr ""
 msgid "WAN-Input Chain"
 msgstr ""
 
 msgid "WAN-Input Chain"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index 65f60bfb37ccc3349c19f98245bb3e10bca40da8..15f1d3e4c805a6f47b8d56ea903cfd2cfa55466f 100644 (file)
@@ -180,7 +180,7 @@ msgstr "IP 链路/集合设置"
 msgid "Changes on this tab needs a banIP service restart to take effect."
 msgstr "此标签页上进行的更改需要重启 banIP 服务才能生效。"
 
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -200,7 +200,7 @@ msgstr ""
 msgid "Countries"
 msgstr "地区"
 
 msgid "Countries"
 msgstr "地区"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -218,7 +218,7 @@ msgstr "IP 去重"
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "描述"
 
 msgid "Description"
 msgstr "描述"
 
@@ -236,7 +236,7 @@ msgstr "域名查询"
 msgid "Don't check SSL server certificates during download."
 msgstr "下载期间不检查 SSL 服务器证书。"
 
 msgid "Don't check SSL server certificates during download."
 msgstr "下载期间不检查 SSL 服务器证书。"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -296,8 +296,8 @@ msgstr "元素数量"
 msgid "Elements"
 msgstr "元素"
 
 msgid "Elements"
 msgstr "元素"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -325,7 +325,7 @@ msgstr "启用 IPv6 支持。"
 msgid "Expiry time for auto added blocklist set members."
 msgstr "自动添加的黑名单集成员的过期时间。"
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr "自动添加的黑名单集成员的过期时间。"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -333,7 +333,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr "源选择"
 
 msgid "Feed Selection"
 msgstr "源选择"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -341,11 +341,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr "防火墙日志"
 
 msgid "Firewall Log"
 msgstr "防火墙日志"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -391,11 +391,11 @@ msgstr "提升打开文件的最大数目便于在加载集时处理临时分割
 msgid "Information"
 msgstr "信息"
 
 msgid "Information"
 msgstr "信息"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -573,8 +573,8 @@ msgstr "处理日志"
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr "“msmtp”所用的 banIP 电子邮件通知配置。"
 
 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:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -617,11 +617,11 @@ msgstr "限制来自/对少量安全 IP 的互联网访问。"
 msgid "Result"
 msgstr "结果"
 
 msgid "Result"
 msgstr "结果"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -633,7 +633,7 @@ msgstr "运行标记"
 msgid "Run Information"
 msgstr "运行信息"
 
 msgid "Run Information"
 msgstr "运行信息"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -818,11 +818,11 @@ msgstr "触发延时"
 msgid "Trigger action on ifup interface events."
 msgstr "ifup 接口事件的触发动作。"
 
 msgid "Trigger action on ifup interface events."
 msgstr "ifup 接口事件的触发动作。"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -831,12 +831,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr "无法保存更改:%s"
 
 msgid "Unable to save modifications: %s"
 msgstr "无法保存更改:%s"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -866,7 +867,7 @@ msgstr "广域网输入(数据包)"
 msgid "WAN-Input Chain"
 msgstr "广域网输入链"
 
 msgid "WAN-Input Chain"
 msgstr "广域网输入链"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "
index 730431f8cdb3c5fbc13ed72ef20334d4b9b9bdf0..936c14010686bad656f197cc678867200b4b0307 100644 (file)
@@ -180,7 +180,7 @@ msgstr "IP 鏈結/集合設定"
 msgid "Changes on this tab needs a banIP service restart to take effect."
 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:276
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:288
 msgid "Clear Custom Feeds"
 msgstr ""
 
 msgid "Clear Custom Feeds"
 msgstr ""
 
@@ -200,7 +200,7 @@ msgstr ""
 msgid "Countries"
 msgstr "地區"
 
 msgid "Countries"
 msgstr "地區"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid "Custom Feed Editor"
 msgstr ""
 
 msgid "Custom Feed Editor"
 msgstr ""
 
@@ -218,7 +218,7 @@ msgstr "刪除重複 IP"
 msgid "Default Block Policy"
 msgstr ""
 
 msgid "Default Block Policy"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:217
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
 msgid "Description"
 msgstr "描述"
 
 msgid "Description"
 msgstr "描述"
 
@@ -236,7 +236,7 @@ msgstr ""
 msgid "Don't check SSL server certificates during download."
 msgstr "下載期間不檢查 SSL 伺服器證書。"
 
 msgid "Don't check SSL server certificates during download."
 msgstr "下載期間不檢查 SSL 伺服器證書。"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:249
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:261
 msgid "Download Custom Feeds"
 msgstr ""
 
 msgid "Download Custom Feeds"
 msgstr ""
 
@@ -296,8 +296,8 @@ msgstr "元素數量"
 msgid "Elements"
 msgstr "元素"
 
 msgid "Elements"
 msgstr "元素"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:183
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:221
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
 msgid "Empty field not allowed"
 msgstr ""
 
 msgid "Empty field not allowed"
 msgstr ""
 
@@ -325,7 +325,7 @@ msgstr "啟用 IPv6 支援。"
 msgid "Expiry time for auto added blocklist set members."
 msgstr "自動加入的黑名單集合成員的過期時間。"
 
 msgid "Expiry time for auto added blocklist set members."
 msgstr "自動加入的黑名單集合成員的過期時間。"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:178
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
 msgid "Feed Name"
 msgstr ""
 
 msgid "Feed Name"
 msgstr ""
 
@@ -333,7 +333,7 @@ msgstr ""
 msgid "Feed Selection"
 msgstr "來源選擇"
 
 msgid "Feed Selection"
 msgstr "來源選擇"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:267
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:279
 msgid "Fill Custom Feeds"
 msgstr ""
 
 msgid "Fill Custom Feeds"
 msgstr ""
 
@@ -341,11 +341,11 @@ msgstr ""
 msgid "Firewall Log"
 msgstr "防火牆日誌"
 
 msgid "Firewall Log"
 msgstr "防火牆日誌"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:226
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
 msgid "Flag"
 msgstr ""
 
 msgid "Flag"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:245
 msgid "Flag not supported"
 msgstr ""
 
 msgid "Flag not supported"
 msgstr ""
 
@@ -391,11 +391,11 @@ msgstr "提升開啟檔案的最大數目便於在載入集合時處理臨時分
 msgid "Information"
 msgstr "資訊"
 
 msgid "Information"
 msgstr "資訊"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:186
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
 msgid "Invalid characters"
 msgstr ""
 
 msgid "Invalid characters"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:114
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
 msgid "Invalid input values, unable to save modifications."
 msgstr ""
 
@@ -573,8 +573,8 @@ msgstr "處理日誌"
 msgid "Profile used by 'msmtp' for banIP notification E-Mails."
 msgstr "「msmtp」所用的 banIP 電子郵件通知設定。"
 
 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:197
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:210
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
 msgid "Protocol/URL format not supported"
 msgstr ""
 
 msgid "Protocol/URL format not supported"
 msgstr ""
 
@@ -617,11 +617,11 @@ msgstr "限制來自/對少量安全 IP 的網際網路存取。"
 msgid "Result"
 msgstr "結果"
 
 msgid "Result"
 msgstr "結果"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:202
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
 msgid "Rulev4"
 msgstr ""
 
 msgid "Rulev4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:215
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
 msgid "Rulev6"
 msgstr ""
 
 msgid "Rulev6"
 msgstr ""
 
@@ -633,7 +633,7 @@ msgstr "執行旗標"
 msgid "Run Information"
 msgstr "執行資訊"
 
 msgid "Run Information"
 msgstr "執行資訊"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:285
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:297
 msgid "Save Custom Feeds"
 msgstr ""
 
 msgid "Save Custom Feeds"
 msgstr ""
 
@@ -818,11 +818,11 @@ msgstr "觸發延遲"
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
 msgid "Trigger action on ifup interface events."
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:191
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
 msgid "URLv4"
 msgstr ""
 
 msgid "URLv4"
 msgstr ""
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:204
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
 msgid "URLv6"
 msgstr ""
 
 msgid "URLv6"
 msgstr ""
 
@@ -831,12 +831,13 @@ msgstr ""
 msgid "Unable to save modifications: %s"
 msgstr "無法儲存變更:%s"
 
 msgid "Unable to save modifications: %s"
 msgstr "無法儲存變更:%s"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:258
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:270
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
 msgid "Upload Custom Feeds"
 msgstr ""
 
 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:80
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
 msgid "Upload of the custom feed file failed."
 msgstr ""
 
@@ -866,7 +867,7 @@ msgstr "廣域網路輸入 (資料封包)"
 msgid "WAN-Input Chain"
 msgstr "廣域網路輸入鏈"
 
 msgid "WAN-Input Chain"
 msgstr "廣域網路輸入鏈"
 
-#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:162
+#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
 msgid ""
 "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 "
 msgid ""
 "With this editor you can upload your local custom feed file or fill up an "
 "initial one (a 1:1 copy of the version shipped with the package). The file "