From 0c67d74fd39ca52e58432eeb1f58480fca381915 Mon Sep 17 00:00:00 2001 From: Dirk Brenken Date: Thu, 30 Mar 2023 18:55:27 +0200 Subject: [PATCH] luci-app-banip: sync with banIP 0.8.2-5 * made some missing text pieces translatable * change banip.feeds permission Signed-off-by: Dirk Brenken --- .../luci-static/resources/view/banip/overview.js | 10 +++++----- applications/luci-app-banip/po/ar/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/bg/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/bn_BD/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/ca/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/cs/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/da/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/de/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/el/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/en/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/es/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/fi/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/fr/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/he/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/hi/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/hu/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/it/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/ja/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/ko/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/mr/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/ms/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/nb_NO/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/nl/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/pl/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/pt/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/pt_BR/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/ro/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/ru/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/sk/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/sv/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/sw/banip.po | 16 ++++++++++++++++ .../luci-app-banip/po/templates/banip.pot | 16 ++++++++++++++++ applications/luci-app-banip/po/tr/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/uk/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/vi/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/zh_Hans/banip.po | 16 ++++++++++++++++ applications/luci-app-banip/po/zh_Hant/banip.po | 16 ++++++++++++++++ .../usr/share/rpcd/acl.d/luci-app-banip.json | 2 +- 38 files changed, 582 insertions(+), 6 deletions(-) diff --git a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js index d0f9973cad..699d508955 100644 --- a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js +++ b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js @@ -329,7 +329,7 @@ return view.extend({ */ o = s.taboption('advanced', form.DummyValue, '_sub'); o.rawhtml = true; - o.default = 'Changes on this tab needs a banIP service restart to take effect.'; + o.default = '' + _('Changes on this tab needs a banIP service restart to take effect.') + ''; o = s.taboption('advanced', form.ListValue, 'ban_nicelimit', _('Nice Level'), _('The selected priority will be used for banIP background processing.')); o.value('-20', _('Highest Priority')); @@ -390,7 +390,7 @@ return view.extend({ */ o = s.taboption('adv_chain', form.DummyValue, '_sub'); o.rawhtml = true; - o.default = 'Changes on this tab needs a banIP service restart to take effect.'; + o.default = '' + _('Changes on this tab needs a banIP service restart to take effect.') + ''; o = s.taboption('adv_chain', form.ListValue, 'ban_nftpolicy', _('Set Policy'), _('Set the nft policy for banIP-related sets.')); o.value('memory', _('memory (default)')); @@ -456,7 +456,7 @@ return view.extend({ */ o = s.taboption('adv_log', form.DummyValue, '_sub'); o.rawhtml = true; - o.default = 'Changes on this tab needs a banIP service restart to take effect.'; + o.default = '' + _('Changes on this tab needs a banIP service restart to take effect.') + ''; o = s.taboption('adv_log', form.ListValue, 'ban_nftloglevel', _('Log Level'), _('Set the syslog level for NFT logging.')); o.value('emerg', _('emerg')); @@ -494,7 +494,7 @@ return view.extend({ */ o = s.taboption('adv_email', form.DummyValue, '_sub'); o.rawhtml = true; - o.default = 'To enable email notifications, set up the \'msmtp\' package and specify a vaild E-Mail receiver address.'; + o.default = '' + _('To enable email notifications, set up the \'msmtp\' package and specify a vaild E-Mail receiver address.') + ''; o = s.taboption('adv_email', form.Flag, 'ban_mailnotification', _('E-Mail Notification'), _('Receive E-Mail notifications with every banIP run.')); o.rmempty = true; @@ -521,7 +521,7 @@ return view.extend({ */ o = s.taboption('feeds', form.DummyValue, '_sub'); o.rawhtml = true; - o.default = 'List of supported and fully pre-configured banIP feeds.'; + o.default = '' + _('List of supported and fully pre-configured banIP feeds.') + ''; if (result[0]) { var focus, feed, feeds; diff --git a/applications/luci-app-banip/po/ar/banip.po b/applications/luci-app-banip/po/ar/banip.po index 58086bd811..f719d8cce2 100644 --- a/applications/luci-app-banip/po/ar/banip.po +++ b/applications/luci-app-banip/po/ar/banip.po @@ -169,6 +169,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -374,6 +380,10 @@ msgstr "" msgid "List of available network interfaces to trigger the banIP start." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -693,6 +703,12 @@ msgstr "" msgid "Timestamp" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "" diff --git a/applications/luci-app-banip/po/bg/banip.po b/applications/luci-app-banip/po/bg/banip.po index 085072d531..0c95dfb9c6 100644 --- a/applications/luci-app-banip/po/bg/banip.po +++ b/applications/luci-app-banip/po/bg/banip.po @@ -168,6 +168,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -373,6 +379,10 @@ msgstr "" msgid "List of available network interfaces to trigger the banIP start." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -692,6 +702,12 @@ msgstr "" msgid "Timestamp" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "" diff --git a/applications/luci-app-banip/po/bn_BD/banip.po b/applications/luci-app-banip/po/bn_BD/banip.po index 4b6fd9a3e7..31e1e2baa8 100644 --- a/applications/luci-app-banip/po/bn_BD/banip.po +++ b/applications/luci-app-banip/po/bn_BD/banip.po @@ -168,6 +168,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -373,6 +379,10 @@ msgstr "" msgid "List of available network interfaces to trigger the banIP start." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -692,6 +702,12 @@ msgstr "" msgid "Timestamp" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "" diff --git a/applications/luci-app-banip/po/ca/banip.po b/applications/luci-app-banip/po/ca/banip.po index bb6b4df579..1837c27554 100644 --- a/applications/luci-app-banip/po/ca/banip.po +++ b/applications/luci-app-banip/po/ca/banip.po @@ -168,6 +168,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -373,6 +379,10 @@ msgstr "" msgid "List of available network interfaces to trigger the banIP start." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -692,6 +702,12 @@ msgstr "" msgid "Timestamp" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "" diff --git a/applications/luci-app-banip/po/cs/banip.po b/applications/luci-app-banip/po/cs/banip.po index e76bacd8e2..276b077ce7 100644 --- a/applications/luci-app-banip/po/cs/banip.po +++ b/applications/luci-app-banip/po/cs/banip.po @@ -168,6 +168,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -373,6 +379,10 @@ msgstr "" msgid "List of available network interfaces to trigger the banIP start." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -692,6 +702,12 @@ msgstr "" msgid "Timestamp" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "" diff --git a/applications/luci-app-banip/po/da/banip.po b/applications/luci-app-banip/po/da/banip.po index c9ebf9d1c8..93336a5a8f 100644 --- a/applications/luci-app-banip/po/da/banip.po +++ b/applications/luci-app-banip/po/da/banip.po @@ -168,6 +168,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -374,6 +380,10 @@ msgid "List of available network interfaces to trigger the banIP start." msgstr "" "Liste over tilgængelige netværks interfaces til at trigger banIP start." +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -694,6 +704,12 @@ msgstr "" msgid "Timestamp" msgstr "Tidsstempel" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "Emne for banIP-meddelelses-e-mails." diff --git a/applications/luci-app-banip/po/de/banip.po b/applications/luci-app-banip/po/de/banip.po index 4337c72d10..b7d0c0c068 100644 --- a/applications/luci-app-banip/po/de/banip.po +++ b/applications/luci-app-banip/po/de/banip.po @@ -174,6 +174,12 @@ msgstr "Kettenpriorität" msgid "Chain/Set Settings" msgstr "Ketten-/Set-Einstellungen" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -394,6 +400,10 @@ msgstr "" "Liste der verfügbaren Netzwerkschnittstellen, die den Start von banIP " "auslösen können." +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "Auflistung der Elemente eines bestimmten banIP-bezogenen Sets." @@ -747,6 +757,12 @@ msgstr "" msgid "Timestamp" msgstr "Zeitstempel" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "Betreff für banIP-Benachrichtigungs-E-Mails." diff --git a/applications/luci-app-banip/po/el/banip.po b/applications/luci-app-banip/po/el/banip.po index 7824df458f..30ded7c613 100644 --- a/applications/luci-app-banip/po/el/banip.po +++ b/applications/luci-app-banip/po/el/banip.po @@ -168,6 +168,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -373,6 +379,10 @@ msgstr "" msgid "List of available network interfaces to trigger the banIP start." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -692,6 +702,12 @@ msgstr "" msgid "Timestamp" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "" diff --git a/applications/luci-app-banip/po/en/banip.po b/applications/luci-app-banip/po/en/banip.po index f387828c65..ab7071a28a 100644 --- a/applications/luci-app-banip/po/en/banip.po +++ b/applications/luci-app-banip/po/en/banip.po @@ -168,6 +168,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -373,6 +379,10 @@ msgstr "" msgid "List of available network interfaces to trigger the banIP start." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -692,6 +702,12 @@ msgstr "" msgid "Timestamp" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "" diff --git a/applications/luci-app-banip/po/es/banip.po b/applications/luci-app-banip/po/es/banip.po index 3a692e2b81..79fae6f147 100644 --- a/applications/luci-app-banip/po/es/banip.po +++ b/applications/luci-app-banip/po/es/banip.po @@ -171,6 +171,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -377,6 +383,10 @@ msgid "List of available network interfaces to trigger the banIP start." msgstr "" "Lista de interfaces de red disponibles para activar el inicio de banIP." +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -701,6 +711,12 @@ msgstr "" msgid "Timestamp" msgstr "Marca de tiempo" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "Tema para correos electrónicos de notificación de banIP." diff --git a/applications/luci-app-banip/po/fi/banip.po b/applications/luci-app-banip/po/fi/banip.po index b33d399308..d01aada700 100644 --- a/applications/luci-app-banip/po/fi/banip.po +++ b/applications/luci-app-banip/po/fi/banip.po @@ -168,6 +168,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -373,6 +379,10 @@ msgstr "" msgid "List of available network interfaces to trigger the banIP start." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -692,6 +702,12 @@ msgstr "" msgid "Timestamp" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "" diff --git a/applications/luci-app-banip/po/fr/banip.po b/applications/luci-app-banip/po/fr/banip.po index ab2d8cbdee..ef89a5aacd 100644 --- a/applications/luci-app-banip/po/fr/banip.po +++ b/applications/luci-app-banip/po/fr/banip.po @@ -168,6 +168,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -376,6 +382,10 @@ msgstr "" "Liste des interfaces réseau disponibles pour déclencher le démarrage du " "banIP." +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -700,6 +710,12 @@ msgstr "" msgid "Timestamp" msgstr "Horodatage" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "Rubrique pour les courriels de notification banIP." diff --git a/applications/luci-app-banip/po/he/banip.po b/applications/luci-app-banip/po/he/banip.po index 56f78ea026..44eda3e491 100644 --- a/applications/luci-app-banip/po/he/banip.po +++ b/applications/luci-app-banip/po/he/banip.po @@ -169,6 +169,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -374,6 +380,10 @@ msgstr "" msgid "List of available network interfaces to trigger the banIP start." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -693,6 +703,12 @@ msgstr "" msgid "Timestamp" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "" diff --git a/applications/luci-app-banip/po/hi/banip.po b/applications/luci-app-banip/po/hi/banip.po index e55144766b..1ef6bd0f1b 100644 --- a/applications/luci-app-banip/po/hi/banip.po +++ b/applications/luci-app-banip/po/hi/banip.po @@ -162,6 +162,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -367,6 +373,10 @@ msgstr "" msgid "List of available network interfaces to trigger the banIP start." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -686,6 +696,12 @@ msgstr "" msgid "Timestamp" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "" diff --git a/applications/luci-app-banip/po/hu/banip.po b/applications/luci-app-banip/po/hu/banip.po index a5339b109f..c2f02a5e29 100644 --- a/applications/luci-app-banip/po/hu/banip.po +++ b/applications/luci-app-banip/po/hu/banip.po @@ -168,6 +168,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -374,6 +380,10 @@ msgstr "" msgid "List of available network interfaces to trigger the banIP start." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -693,6 +703,12 @@ msgstr "" msgid "Timestamp" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "" diff --git a/applications/luci-app-banip/po/it/banip.po b/applications/luci-app-banip/po/it/banip.po index bd3f40be5f..b676288c57 100644 --- a/applications/luci-app-banip/po/it/banip.po +++ b/applications/luci-app-banip/po/it/banip.po @@ -168,6 +168,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -373,6 +379,10 @@ msgstr "" msgid "List of available network interfaces to trigger the banIP start." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -692,6 +702,12 @@ msgstr "" msgid "Timestamp" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "" diff --git a/applications/luci-app-banip/po/ja/banip.po b/applications/luci-app-banip/po/ja/banip.po index 6e084e3bc1..dd1b171d03 100644 --- a/applications/luci-app-banip/po/ja/banip.po +++ b/applications/luci-app-banip/po/ja/banip.po @@ -168,6 +168,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -373,6 +379,10 @@ msgstr "" msgid "List of available network interfaces to trigger the banIP start." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -692,6 +702,12 @@ msgstr "" msgid "Timestamp" msgstr "タイムスタンプ" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "" diff --git a/applications/luci-app-banip/po/ko/banip.po b/applications/luci-app-banip/po/ko/banip.po index 293e97b233..68bfad456d 100644 --- a/applications/luci-app-banip/po/ko/banip.po +++ b/applications/luci-app-banip/po/ko/banip.po @@ -169,6 +169,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -374,6 +380,10 @@ msgstr "" msgid "List of available network interfaces to trigger the banIP start." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -693,6 +703,12 @@ msgstr "" msgid "Timestamp" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "" diff --git a/applications/luci-app-banip/po/mr/banip.po b/applications/luci-app-banip/po/mr/banip.po index 4b8cea7bae..ad1a811e7e 100644 --- a/applications/luci-app-banip/po/mr/banip.po +++ b/applications/luci-app-banip/po/mr/banip.po @@ -168,6 +168,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -373,6 +379,10 @@ msgstr "" msgid "List of available network interfaces to trigger the banIP start." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -692,6 +702,12 @@ msgstr "" msgid "Timestamp" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "" diff --git a/applications/luci-app-banip/po/ms/banip.po b/applications/luci-app-banip/po/ms/banip.po index c69340c89d..76aff9829d 100644 --- a/applications/luci-app-banip/po/ms/banip.po +++ b/applications/luci-app-banip/po/ms/banip.po @@ -168,6 +168,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -373,6 +379,10 @@ msgstr "" msgid "List of available network interfaces to trigger the banIP start." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -692,6 +702,12 @@ msgstr "" msgid "Timestamp" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "" diff --git a/applications/luci-app-banip/po/nb_NO/banip.po b/applications/luci-app-banip/po/nb_NO/banip.po index c520688f6a..822d8e0a6f 100644 --- a/applications/luci-app-banip/po/nb_NO/banip.po +++ b/applications/luci-app-banip/po/nb_NO/banip.po @@ -168,6 +168,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -373,6 +379,10 @@ msgstr "" msgid "List of available network interfaces to trigger the banIP start." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -693,6 +703,12 @@ msgstr "" msgid "Timestamp" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "" diff --git a/applications/luci-app-banip/po/nl/banip.po b/applications/luci-app-banip/po/nl/banip.po index 625361be3f..fd916aa814 100644 --- a/applications/luci-app-banip/po/nl/banip.po +++ b/applications/luci-app-banip/po/nl/banip.po @@ -168,6 +168,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -373,6 +379,10 @@ msgstr "" msgid "List of available network interfaces to trigger the banIP start." msgstr "Lijst van beschikbare netwerkinterfaces die banIP starten." +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -697,6 +707,12 @@ msgstr "" msgid "Timestamp" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "" diff --git a/applications/luci-app-banip/po/pl/banip.po b/applications/luci-app-banip/po/pl/banip.po index 9e777543a9..dae8691244 100644 --- a/applications/luci-app-banip/po/pl/banip.po +++ b/applications/luci-app-banip/po/pl/banip.po @@ -176,6 +176,12 @@ msgstr "Priorytet łańcucha" msgid "Chain/Set Settings" msgstr "Ustawienia łańcucha/zestawu" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -399,6 +405,10 @@ msgid "List of available network interfaces to trigger the banIP start." msgstr "" "Lista dostępnych interfejsów sieciowych wyzwalających uruchomienie banIP." +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "Wymień elementy określonego zestawu związanego z banIP." @@ -746,6 +756,12 @@ msgstr "" msgid "Timestamp" msgstr "Sygnatura czasowa" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "Temat dla wiadomości e-mail z powiadomieniem banIP." diff --git a/applications/luci-app-banip/po/pt/banip.po b/applications/luci-app-banip/po/pt/banip.po index 55008418d4..d560c3526b 100644 --- a/applications/luci-app-banip/po/pt/banip.po +++ b/applications/luci-app-banip/po/pt/banip.po @@ -168,6 +168,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -374,6 +380,10 @@ msgid "List of available network interfaces to trigger the banIP start." msgstr "" "Lista de interfaces de rede disponíveis para acionar o início do banIP." +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -695,6 +705,12 @@ msgstr "" msgid "Timestamp" msgstr "Marca de Tempo" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "Tópico para e-mails de notificação do banIP." diff --git a/applications/luci-app-banip/po/pt_BR/banip.po b/applications/luci-app-banip/po/pt_BR/banip.po index 0d5bb932c0..2f59628f9f 100644 --- a/applications/luci-app-banip/po/pt_BR/banip.po +++ b/applications/luci-app-banip/po/pt_BR/banip.po @@ -177,6 +177,12 @@ msgstr "Prioridade da cadeia" msgid "Chain/Set Settings" msgstr "Cadeia/Definir as configurações" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -401,6 +407,10 @@ msgid "List of available network interfaces to trigger the banIP start." msgstr "" "Lista de interfaces de rede disponíveis para acionar o início do banIP." +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "Liste os elementos de um conjunto específico relacionado ao banIP." @@ -752,6 +762,12 @@ msgstr "" msgid "Timestamp" msgstr "Marca de Tempo" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "Tópico para e-mails de notificação do banIP." diff --git a/applications/luci-app-banip/po/ro/banip.po b/applications/luci-app-banip/po/ro/banip.po index dd645a1645..a302aab102 100644 --- a/applications/luci-app-banip/po/ro/banip.po +++ b/applications/luci-app-banip/po/ro/banip.po @@ -176,6 +176,12 @@ msgstr "Prioritatea Chain" msgid "Chain/Set Settings" msgstr "Chain/Set de setări" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -398,6 +404,10 @@ msgid "List of available network interfaces to trigger the banIP start." msgstr "" "Lista interfețelor de rețea disponibile pentru a declanșa pornirea banIP." +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "Enumeră elementele unui anumit set legat de banIP." @@ -747,6 +757,12 @@ msgstr "" msgid "Timestamp" msgstr "Înregistrarea timpului" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "Subiect pentru e-mailurile de notificare banIP." diff --git a/applications/luci-app-banip/po/ru/banip.po b/applications/luci-app-banip/po/ru/banip.po index ccbdb02af8..54a7a78399 100644 --- a/applications/luci-app-banip/po/ru/banip.po +++ b/applications/luci-app-banip/po/ru/banip.po @@ -169,6 +169,12 @@ msgstr "Приоритет цепочки" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -375,6 +381,10 @@ msgstr "" msgid "List of available network interfaces to trigger the banIP start." msgstr "Список доступных сетевых интерфейсов запускающих banIP." +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -694,6 +704,12 @@ msgstr "" msgid "Timestamp" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "" diff --git a/applications/luci-app-banip/po/sk/banip.po b/applications/luci-app-banip/po/sk/banip.po index 1379ea9605..d58f29933e 100644 --- a/applications/luci-app-banip/po/sk/banip.po +++ b/applications/luci-app-banip/po/sk/banip.po @@ -168,6 +168,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -373,6 +379,10 @@ msgstr "" msgid "List of available network interfaces to trigger the banIP start." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -692,6 +702,12 @@ msgstr "" msgid "Timestamp" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "" diff --git a/applications/luci-app-banip/po/sv/banip.po b/applications/luci-app-banip/po/sv/banip.po index a075347b04..1a9035f4bf 100644 --- a/applications/luci-app-banip/po/sv/banip.po +++ b/applications/luci-app-banip/po/sv/banip.po @@ -168,6 +168,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -373,6 +379,10 @@ msgstr "" msgid "List of available network interfaces to trigger the banIP start." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -692,6 +702,12 @@ msgstr "" msgid "Timestamp" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "" diff --git a/applications/luci-app-banip/po/sw/banip.po b/applications/luci-app-banip/po/sw/banip.po index 54ff14554f..271398682f 100644 --- a/applications/luci-app-banip/po/sw/banip.po +++ b/applications/luci-app-banip/po/sw/banip.po @@ -168,6 +168,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -373,6 +379,10 @@ msgstr "" msgid "List of available network interfaces to trigger the banIP start." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -692,6 +702,12 @@ msgstr "" msgid "Timestamp" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "" diff --git a/applications/luci-app-banip/po/templates/banip.pot b/applications/luci-app-banip/po/templates/banip.pot index d45838ca13..d6b3473f3f 100644 --- a/applications/luci-app-banip/po/templates/banip.pot +++ b/applications/luci-app-banip/po/templates/banip.pot @@ -159,6 +159,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -364,6 +370,10 @@ msgstr "" msgid "List of available network interfaces to trigger the banIP start." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -683,6 +693,12 @@ msgstr "" msgid "Timestamp" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "" diff --git a/applications/luci-app-banip/po/tr/banip.po b/applications/luci-app-banip/po/tr/banip.po index 0ce49b7b26..747f54be2d 100644 --- a/applications/luci-app-banip/po/tr/banip.po +++ b/applications/luci-app-banip/po/tr/banip.po @@ -168,6 +168,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -373,6 +379,10 @@ msgstr "" msgid "List of available network interfaces to trigger the banIP start." msgstr "BanIP başlangıcını tetiklemek için mevcut ağ arayüzlerinin listesi." +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -694,6 +704,12 @@ msgstr "" msgid "Timestamp" msgstr "Zaman damgası" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "BanIP bildirim e-postaları için konu." diff --git a/applications/luci-app-banip/po/uk/banip.po b/applications/luci-app-banip/po/uk/banip.po index 97fd31a6cb..a955207257 100644 --- a/applications/luci-app-banip/po/uk/banip.po +++ b/applications/luci-app-banip/po/uk/banip.po @@ -169,6 +169,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -374,6 +380,10 @@ msgstr "" msgid "List of available network interfaces to trigger the banIP start." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -693,6 +703,12 @@ msgstr "" msgid "Timestamp" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "" diff --git a/applications/luci-app-banip/po/vi/banip.po b/applications/luci-app-banip/po/vi/banip.po index 7768050ee8..7cb1b7a658 100644 --- a/applications/luci-app-banip/po/vi/banip.po +++ b/applications/luci-app-banip/po/vi/banip.po @@ -168,6 +168,12 @@ msgstr "" msgid "Chain/Set Settings" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -373,6 +379,10 @@ msgstr "" msgid "List of available network interfaces to trigger the banIP start." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "" @@ -692,6 +702,12 @@ msgstr "" msgid "Timestamp" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "" diff --git a/applications/luci-app-banip/po/zh_Hans/banip.po b/applications/luci-app-banip/po/zh_Hans/banip.po index fca8ee0937..ee55e8d0a3 100644 --- a/applications/luci-app-banip/po/zh_Hans/banip.po +++ b/applications/luci-app-banip/po/zh_Hans/banip.po @@ -168,6 +168,12 @@ msgstr "链优先级" msgid "Chain/Set Settings" msgstr "IP 链路/集合设置" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -376,6 +382,10 @@ msgstr "在状态和报告中列出集合元素,禁用此功能可减少 CPU msgid "List of available network interfaces to trigger the banIP start." msgstr "触发 banIP 启动的可用网络接口列表。" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "列出与某一特定 banIP 有关的集合的元素。" @@ -699,6 +709,12 @@ msgstr "此标签页显示最后生成的集合报告,按下“刷新“按钮 msgid "Timestamp" msgstr "时间戳" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "banIP 通知邮件的主题。" diff --git a/applications/luci-app-banip/po/zh_Hant/banip.po b/applications/luci-app-banip/po/zh_Hant/banip.po index 7113e8b018..cff6defaf6 100644 --- a/applications/luci-app-banip/po/zh_Hant/banip.po +++ b/applications/luci-app-banip/po/zh_Hant/banip.po @@ -168,6 +168,12 @@ msgstr "鏈優先順序" msgid "Chain/Set Settings" msgstr "IP 鏈結/集合設定" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:332 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459 +msgid "Changes on this tab needs a banIP service restart to take effect." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "" "Configuration of the banIP package to ban incoming and outgoing ip addresses/" @@ -376,6 +382,10 @@ msgstr "在狀態和報告中列出集合元素,停用此功能可減少 CPU msgid "List of available network interfaces to trigger the banIP start." msgstr "觸發 banIP 啟動的可用網路介面列表。" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:524 +msgid "List of supported and fully pre-configured banIP feeds." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:82 msgid "List the elements of a specific banIP-related Set." msgstr "列出與某一特定 banIP 有關的集合的元素。" @@ -699,6 +709,12 @@ msgstr "此標籤頁顯示最後產生的集合報告,按下「更新」按鈕 msgid "Timestamp" msgstr "時間戳" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +msgid "" +"To enable email notifications, set up the 'msmtp' package and specify a " +"vaild E-Mail receiver address." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 msgid "Topic for banIP notification E-Mails." msgstr "banIP 通知郵件的主題。" diff --git a/applications/luci-app-banip/root/usr/share/rpcd/acl.d/luci-app-banip.json b/applications/luci-app-banip/root/usr/share/rpcd/acl.d/luci-app-banip.json index c8b8574495..dff1723541 100644 --- a/applications/luci-app-banip/root/usr/share/rpcd/acl.d/luci-app-banip.json +++ b/applications/luci-app-banip/root/usr/share/rpcd/acl.d/luci-app-banip.json @@ -16,7 +16,7 @@ "write" ], "/etc/banip/banip.feeds": [ - "read" + "write" ] } }, -- 2.30.2