diff options
Diffstat (limited to 'applications/luci-app-banip')
38 files changed, 10896 insertions, 5830 deletions
diff --git a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js index b9b1bde991..f172158063 100644 --- a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js +++ b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js @@ -21,7 +21,7 @@ return view.extend({ return E([ E('p', {}, _('This is the local banIP blacklist to always-deny certain IP/CIDR addresses.<br /> \ - <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per line. Comments introduced with \'#\' are allowed - domains, wildcards and regex are not.')), + <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address or domain name per line. Comments introduced with \'#\' are allowed - wildcards and regex are not.')), E('p', {}, E('textarea', { 'style': 'width: 100% !important; padding: 5px; font-family: monospace', diff --git a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js index 66c28eb2a2..b08ffffded 100644 --- a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js +++ b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js @@ -17,7 +17,7 @@ function handleAction(ev) { ]), E('div', { 'class': 'right' }, [ E('button', { - 'class': 'btn', + 'class': 'btn cbi-button', 'click': L.hideModal }, _('Cancel')), ' ', @@ -68,7 +68,7 @@ function handleAction(ev) { ]), E('div', { 'class': 'right' }, [ E('button', { - 'class': 'btn', + 'class': 'btn cbi-button', 'click': L.hideModal }, _('Cancel')), ' ', @@ -123,7 +123,7 @@ return view.extend({ E('th', { 'class': 'th' }, _('Count MAC')), E('th', { 'class': 'th' }, _('Count ACC')), E('th', { 'class': 'th' }, _('Entry Details')), - E('th', { 'class': 'th' }, _('')), + E('th', { 'class': 'th' }, '\xa0'), E('th', { 'class': 'th' }, _('Action')) ]) ]); @@ -142,10 +142,9 @@ return view.extend({ ]); for (var i = 0; i < content.ipsets[key].member_acc.length; i++) { if (key != 'maclist' && key.substr(0,9) != 'whitelist') { - urlprefix = content.ipsets[key].member_acc[i].member.includes('/') ? 'prefix/' : 'ip/'; - member = '<a href="https://api.bgpview.io/' + urlprefix + encodeURIComponent(content.ipsets[key].member_acc[i].member) + '" target="_blank" rel="noreferrer noopener" title="IP/CIDR Lookup" >' + content.ipsets[key].member_acc[i].member + '</a>'; + member = '<a href="https://ipwhois.app/json/' + encodeURIComponent(content.ipsets[key].member_acc[i].member) + '" target="_blank" rel="noreferrer noopener" title="IP/CIDR Lookup" >' + content.ipsets[key].member_acc[i].member + '</a>'; button = E('button', { - 'class': 'cbi-button cbi-button-apply', + 'class': 'btn cbi-button cbi-button-apply', 'style': 'word-break: inherit', 'name': 'whitelist', 'value': content.ipsets[key].member_acc[i].member, @@ -206,14 +205,14 @@ return view.extend({ ]), E('div', { 'class': 'right' }, [ E('button', { - 'class': 'cbi-button cbi-button-apply', + 'class': 'btn cbi-button cbi-button-apply', 'click': ui.createHandlerFn(this, function() { return handleAction('query'); }) }, [ _('IPSet Query...') ]), '\xa0\xa0\xa0', E('button', { - 'class': 'cbi-button cbi-button-positive', + 'class': 'btn cbi-button cbi-button-positive', 'click': ui.createHandlerFn(this, async function() { L.resolveDefault(fs.exec_direct('/etc/init.d/banip', ['report', 'gen']),''); var running = 1; 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 9196e295a1..55f60b95e5 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 @@ -10,7 +10,7 @@ /* button handling */ -async function handleAction(ev) { +function handleAction(ev) { if (ev === 'timer') { L.ui.showModal(_('Refresh Timer'), [ E('p', _('To keep your banIP lists up-to-date, you should setup an automatic update job for these lists.')), @@ -68,7 +68,7 @@ async function handleAction(ev) { ]), E('div', { 'class': 'right' }, [ E('button', { - 'class': 'btn', + 'class': 'btn cbi-button', 'click': L.hideModal }, _('Cancel')), ' ', @@ -115,29 +115,11 @@ async function handleAction(ev) { return } - if (document.getElementById('status') && document.getElementById('btn_suspend')) { - if (document.getElementById('status').textContent.substr(0,6) === 'paused') { - ev = 'resume'; - } + if (document.getElementById('status') && document.getElementById('status').textContent.substr(0,6) === 'paused') { + ev = 'resume'; } - poll.start(); fs.exec_direct('/etc/init.d/banip', [ev]) - var running = 1; - while (running === 1) { - await new Promise(r => setTimeout(r, 1000)); - L.resolveDefault(fs.read_direct('/var/run/banip.pid')).then(function(res) { - if (!res) { - running = 0; - if (document.getElementById('status') && document.getElementById('btn_suspend')) { - if (document.getElementById('status').textContent.substr(0,7) === 'enabled') { - document.querySelector('#btn_suspend').textContent = 'Suspend'; - } - } - } - }) - } - poll.stop(); } return view.extend({ @@ -176,12 +158,16 @@ return view.extend({ } else { if (inf_stat.classList.contains("spinning")) { inf_stat.classList.remove("spinning"); - poll.stop(); + if (document.getElementById('btn_suspend')) { + if (inf_stat.textContent.substr(0,6) === 'paused') { + document.querySelector('#btn_suspend').textContent = 'Resume'; + } + if (document.getElementById('status').textContent.substr(0,7) === 'enabled') { + document.querySelector('#btn_suspend').textContent = 'Suspend'; + } + } } } - if (inf_stat.textContent.substr(0,6) === 'paused' && document.getElementById('btn_suspend')) { - document.querySelector('#btn_suspend').textContent = 'Resume'; - } } else if (inf_stat) { inf_stat.textContent = '-'; if (inf_stat.classList.contains("spinning")) { @@ -316,14 +302,14 @@ return view.extend({ ]), E('div', { class: 'right' }, [ E('button', { - 'class': 'cbi-button cbi-button-apply', + 'class': 'btn cbi-button cbi-button-apply', 'click': ui.createHandlerFn(this, function() { return handleAction('timer'); }) }, [ _('Refresh Timer...') ]), '\xa0\xa0\xa0', E('button', { - 'class': 'cbi-button cbi-button-apply', + 'class': 'btn cbi-button cbi-button-apply', 'id': 'btn_suspend', 'click': ui.createHandlerFn(this, function() { return handleAction('suspend'); @@ -331,14 +317,14 @@ return view.extend({ }, [ _('Suspend') ]), '\xa0\xa0\xa0', E('button', { - 'class': 'cbi-button cbi-button-positive', + 'class': 'btn cbi-button cbi-button-positive', 'click': ui.createHandlerFn(this, function() { return handleAction('refresh'); }) }, [ _('Refresh') ]), '\xa0\xa0\xa0', E('button', { - 'class': 'cbi-button cbi-button-negative', + 'class': 'btn cbi-button cbi-button-negative', 'click': ui.createHandlerFn(this, function() { return handleAction('restart'); }) @@ -402,6 +388,10 @@ return view.extend({ Logging such packets may cause an increase in latency due to it requiring additional system resources.')); o.rmempty = false; + o = s.taboption('general', form.Flag, 'ban_whitelistonly', _('Whitelist Only'), _('Restrict the internet access from/to a small number of secure websites/IPs \ + and block access from/to the rest of the internet.')); + o.rmempty = true; + o = s.taboption('general', form.Flag, 'ban_mail_enabled', _('E-Mail Notification'), _('Send banIP related notification e-mails. \ This needs the installation and setup of the additional \'msmtp\' package.')); o.rmempty = false; @@ -490,17 +480,43 @@ return view.extend({ o = s.taboption('adv_chain', form.DummyValue, '_sub'); o.rawhtml = true; - o.default = '<em><b>Individual IPSet Types</b></em>'; + o.default = '<em><b>Individual IPSet Settings</b></em>'; + + o = s.taboption('adv_chain', form.ListValue, 'ban_maclist_timeout', _('Maclist Timeout'), _('Set the maclist IPSet timeout.')); + o.value('1800', _('30 minutes')); + o.value('3600', _('1 hour')); + o.value('21600', _('6 hours')); + o.value('43200', _('12 hours')); + o.value('86400', _('24 hours')); + o.optional = true; + o.rmempty = true; + + o = s.taboption('adv_chain', form.ListValue, 'ban_whitelist_timeout', _('Whitelist Timeout'), _('Set the whitelist IPSet timeout.')); + o.value('1800', _('30 minutes')); + o.value('3600', _('1 hour')); + o.value('21600', _('6 hours')); + o.value('43200', _('12 hours')); + o.value('86400', _('24 hours')); + o.optional = true; + o.rmempty = true; + + o = s.taboption('adv_chain', form.ListValue, 'ban_blacklist_timeout', _('Blacklist Timeout'), _('Set the blacklist IPSet timeout.')); + o.value('1800', _('30 minutes')); + o.value('3600', _('1 hour')); + o.value('21600', _('6 hours')); + o.value('43200', _('12 hours')); + o.value('86400', _('24 hours')); + o.optional = true; + o.rmempty = true; - /* - prepare source data - */ var info, source, sources = []; if (result[0]) { sources = result[0].trim().split('\n'); } o = s.taboption('adv_chain', form.MultiValue, 'ban_settype_src', _('SRC IPSet Type'), _('Set individual SRC type per IPset to block only incoming packets.')); + o.value('whitelist'); + o.value('blacklist'); for (var i = 0; i < sources.length; i++) { if (sources[i].match(/^\s+\+/)) { source = sources[i].match(/^\s+\+\s(\w+)\s/)[1].trim(); @@ -511,6 +527,8 @@ return view.extend({ o.rmempty = true; o = s.taboption('adv_chain', form.MultiValue, 'ban_settype_dst', _('DST IPSet Type'), _('Set individual DST type per IPset to block only outgoing packets.')); + o.value('whitelist'); + o.value('blacklist'); for (var i = 0; i < sources.length; i++) { if (sources[i].match(/^\s+\+/)) { source = sources[i].match(/^\s+\+\s(\w+)\s/)[1].trim(); @@ -521,6 +539,8 @@ return view.extend({ o.rmempty = true; o = s.taboption('adv_chain', form.MultiValue, 'ban_settype_all', _('SRC+DST IPSet Type'), _('Set individual SRC+DST type per IPset to block incoming and outgoing packets.')); + o.value('whitelist'); + o.value('blacklist'); for (var i = 0; i < sources.length; i++) { if (sources[i].match(/^\s+\+/)) { source = sources[i].match(/^\s+\+\s(\w+)\s/)[1].trim(); @@ -660,9 +680,25 @@ return view.extend({ o.value('dropbear'); o.value('sshd'); o.value('luci'); + o.value('nginx'); o.optional = true; o.rmempty = true; + o = s.taboption('adv_log', form.Value, 'ban_ssh_logcount', _('SSH Log Count'), _('Number of failed ssh login repetitions of the same ip in the log before banning.')); + o.placeholder = '3'; + o.datatype = 'range(1,10)'; + o.rmempty = true; + + o = s.taboption('adv_log', form.Value, 'ban_luci_logcount', _('LuCI Log Count'), _('Number of failed LuCI login repetitions of the same ip in the log before banning.')); + o.placeholder = '3'; + o.datatype = 'range(1,10)'; + o.rmempty = true; + + o = s.taboption('adv_log', form.Value, 'ban_nginx_logcount', _('NGINX Log Count'), _('Number of failed nginx requests of the same ip in the log before banning.')); + o.placeholder = '5'; + o.datatype = 'range(1,20)'; + o.rmempty = true; + o = s.taboption('adv_log', form.Value, 'ban_logopts_src', _('SRC Log Options'), _('Set special SRC log options, e.g. to set a limit rate.')); o.nocreate = false; o.unspecified = true; @@ -722,7 +758,7 @@ return view.extend({ o = s.taboption('sources', form.DummyValue, '_sub'); o.rawhtml = true; - o.default = '<em><b>Country selection</b></em>'; + o.default = '<em><b>Country Selection</b></em>'; /* prepare country data @@ -743,7 +779,7 @@ return view.extend({ o = s.taboption('sources', form.DummyValue, '_sub'); o.rawhtml = true; - o.default = '<em><b>ASN selection</b></em>'; + o.default = '<em><b>ASN Selection</b></em>'; o = s.taboption('sources', form.DynamicList, 'ban_asns', _('ASNs')); o.datatype = 'uinteger'; @@ -754,6 +790,18 @@ return view.extend({ o.rawhtml = true; o.default = '<em><b>Local Sources</b></em>'; + o = s.taboption('sources', form.MultiValue, 'ban_localsources', _('Local Sources'), _('Limit the selection to certain local sources.')); + o.value('maclist'); + o.value('whitelist'); + o.value('blacklist'); + o.optional = true; + o.rmempty = true; + + o = s.taboption('sources', form.DynamicList, 'ban_extrasources', _('Extra Sources'), _('Add additional, non-banIP related IPSets e.g. for reporting and queries.')); + o.datatype = 'uciname'; + o.optional = true; + o.rmempty = true; + o = s.taboption('sources', form.Flag, 'ban_autoblacklist', _('Auto Blacklist'), _('Automatically transfers suspicious IPs from the log to the banIP blacklist during runtime.')); o.rmempty = false; diff --git a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js index 4e8e61d90f..be70478412 100644 --- a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js +++ b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js @@ -21,7 +21,7 @@ return view.extend({ return E([ E('p', {}, _('This is the local banIP whitelist to always allow certain IP/CIDR addresses.<br /> \ - <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per line. Comments introduced with \'#\' are allowed - domains, wildcards and regex are not.')), + <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address or domain name per line. Comments introduced with \'#\' are allowed - wildcards and regex are not.')), E('p', {}, E('textarea', { 'style': 'width: 100% !important; padding: 5px; font-family: monospace', diff --git a/applications/luci-app-banip/po/ar/banip.po b/applications/luci-app-banip/po/ar/banip.po index 76e050a2b0..74865e7a1d 100644 --- a/applications/luci-app-banip/po/ar/banip.po +++ b/applications/luci-app-banip/po/ar/banip.po @@ -1,7 +1,7 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-08-04 18:32+0000\n" -"Last-Translator: DJEBRI Ahmed El Amine <djebri.emp@gmail.com>\n" +"PO-Revision-Date: 2021-03-08 13:04+0000\n" +"Last-Translator: Said Zakaria <said.zakaria@gmail.com>\n" "Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsbanip/ar/>\n" "Language: ar\n" @@ -9,14 +9,44 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.5.1\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" msgstr "" @@ -24,92 +54,101 @@ msgstr "" msgid "Action" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "مجلد النسخ الاحتياطي" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" msgstr "" @@ -117,9 +156,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:73 msgid "Cancel" -msgstr "" +msgstr "إلغاء" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -147,88 +186,88 @@ msgstr "" msgid "Count SUM" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" -msgstr "" +msgstr "تنزيل المعلمات" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" -msgstr "" +msgstr "تنزيل قائمة الانتظار" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" -msgstr "" +msgstr "تحميل الأداة" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" -msgstr "" +msgstr "إعلام البريد الإلكتروني" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" -msgstr "" +msgstr "ملف تعريف البريد الإلكتروني" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" -msgstr "" +msgstr "عنوان مستقبل البريد الإلكتروني" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" -msgstr "" +msgstr "عنوان مرسل البريد الإلكتروني" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" -msgstr "" +msgstr "موضوع البريد الإلكتروني" #: applications/luci-app-banip/luasrc/controller/banip.lua:9 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:35 msgid "Edit Blacklist" -msgstr "" +msgstr "تحرير القائمة السوداء" #: applications/luci-app-banip/luasrc/controller/banip.lua:11 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 @@ -238,33 +277,33 @@ msgstr "" #: applications/luci-app-banip/luasrc/controller/banip.lua:10 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:43 msgid "Edit Whitelist" -msgstr "" +msgstr "تحرير القائمة البيضاء" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." -msgstr "" +msgstr "تمكين التسجيل المطول لتصحيح الأخطاء في حالة وجود أي أخطاء في المعالجة." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" -msgstr "" +msgstr "مفعل" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." msgstr "" @@ -274,13 +313,17 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:18 msgid "Existing job(s)" +msgstr "الوظائف الحالية" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" -msgstr "" +msgstr "الاعدادات العامة" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" msgstr "" @@ -288,15 +331,15 @@ msgstr "" msgid "Grant access to LuCI app banIP" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "" @@ -304,7 +347,7 @@ msgstr "" msgid "IPSet Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." msgstr "" @@ -313,219 +356,266 @@ msgstr "" msgid "IPSet Report" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" -msgstr "" +msgstr "معلومة" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" -msgstr "" +msgstr "آخر تشغيل" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" -msgstr "" +msgstr "رقم الخط المراد إزالته" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." +msgstr "قائمة أدوات التنزيل المدعومة والمجهزة بالكامل مسبقًا" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" #: applications/luci-app-banip/luasrc/controller/banip.lua:12 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:59 msgid "Log View" -msgstr "" +msgstr "عرض السجل" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:88 msgid "No Query results!" -msgstr "" +msgstr "لا توجد نتائج استعلام!" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/logread.js:21 msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "نظرة عامة" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:96 msgid "Query" -msgstr "" +msgstr "استعلام" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" -msgstr "" +msgstr "نعش الذاكرة" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:15 msgid "Refresh Timer" -msgstr "" +msgstr "تحديث الموقت" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." -msgstr "" +msgstr "تحديث المؤقت ..." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:62 msgid "Remove an existing job" -msgstr "" +msgstr "إزالة وظيفة موجودة" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" -msgstr "" +msgstr "دليل التقارير" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" +msgstr "إعادة تشغيل" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" -msgstr "" +msgstr "نتيجة" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" -msgstr "" +msgstr "تشغيل الإشارات" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" -msgstr "" +msgstr "إحفض" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:46 msgid "" @@ -533,21 +623,21 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "" @@ -555,106 +645,119 @@ msgstr "" msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 -msgid "Settings" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 +msgid "Settings" +msgstr "إعدادات" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." -msgstr "" +msgstr "خيارات التكوين الخاصة لأداة التنزيل المساعدة المحددة." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" -msgstr "" +msgstr "بدء واجهة التشغيل" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" -msgstr "" +msgstr "الحالة / الإصدار" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" -msgstr "" +msgstr "تعليق" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:87 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:96 msgid "The Refresh Timer could not been updated." -msgstr "" +msgstr "تعذر تحديث مؤقت التحديث." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:89 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:98 msgid "The Refresh Timer has been updated." -msgstr "" +msgstr "تم تحديث مؤقت التحديث." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:57 msgid "The day of the week (opt., values: 1-7 possibly sep. by , or -)" msgstr "" +"يوم الأسبوع (اختياري ، القيم: من 1 إلى 7 من المحتمل أن يفصل بينها أو -)" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:47 msgid "The hours portition (req., range: 0-23)" -msgstr "" +msgstr "قسم الساعات (مطلوب ، النطاق: 0-23)" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:52 msgid "The minutes portion (opt., range: 0-59)" -msgstr "" +msgstr "جزء الدقائق (اختياري ، النطاق: 0-59)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -667,9 +770,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -682,18 +785,18 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" msgstr "" @@ -703,35 +806,35 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" -msgstr "" +msgstr "تأخير الزناد" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:119 msgid "Type" -msgstr "" +msgstr "نوع" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:17 msgid "Unable to save changes: %s" -msgstr "" +msgstr "تعذر حفظ التغييرات: s%" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" -msgstr "" +msgstr "تسجيل مطول للتصحيح" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -739,6 +842,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -746,9 +857,9 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." -msgstr "" +msgstr "القائمة البيضاء ..." #: applications/luci-app-banip/luasrc/controller/banip.lua:6 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:3 diff --git a/applications/luci-app-banip/po/bg/banip.po b/applications/luci-app-banip/po/bg/banip.po index a8df3ac020..aa0e3d785c 100644 --- a/applications/luci-app-banip/po/bg/banip.po +++ b/applications/luci-app-banip/po/bg/banip.po @@ -10,12 +10,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.1-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" msgstr "" @@ -23,92 +53,101 @@ msgstr "" msgid "Action" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" msgstr "" @@ -118,7 +157,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -146,81 +185,81 @@ msgstr "" msgid "Count SUM" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" msgstr "" @@ -239,31 +278,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." msgstr "" @@ -275,11 +314,15 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" msgstr "" @@ -287,15 +330,15 @@ msgstr "" msgid "Grant access to LuCI app banIP" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "" @@ -303,7 +346,7 @@ msgstr "" msgid "IPSet Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." msgstr "" @@ -312,73 +355,81 @@ msgstr "" msgid "IPSet Report" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" @@ -387,27 +438,39 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" msgstr "" @@ -419,44 +482,61 @@ msgstr "" msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" @@ -464,12 +544,12 @@ msgstr "" msgid "Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "" @@ -477,7 +557,7 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." msgstr "" @@ -485,42 +565,52 @@ msgstr "" msgid "Remove an existing job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" @@ -532,21 +622,21 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "" @@ -554,80 +644,92 @@ msgstr "" msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 msgid "Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" @@ -653,7 +755,7 @@ msgstr "" msgid "The minutes portion (opt., range: 0-59)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -666,9 +768,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -681,18 +783,18 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" msgstr "" @@ -702,11 +804,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "" @@ -720,17 +822,17 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -738,6 +840,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -745,7 +855,7 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." msgstr "" diff --git a/applications/luci-app-banip/po/bn_BD/banip.po b/applications/luci-app-banip/po/bn_BD/banip.po index 3faceedeef..40807866e1 100644 --- a/applications/luci-app-banip/po/bn_BD/banip.po +++ b/applications/luci-app-banip/po/bn_BD/banip.po @@ -1,15 +1,51 @@ msgid "" msgstr "" +"PO-Revision-Date: 2021-03-05 07:34+0000\n" +"Last-Translator: Anup Debnath <anupdebnath7@gmail.com>\n" +"Language-Team: Bengali (Bangladesh) <https://hosted.weblate.org/projects/" +"openwrt/luciapplicationsbanip/bn_BD/>\n" "Language: bn_BD\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.5.1-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "১ ঘন্টা" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "১২ ঘন্টা" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "২৪ ঘন্টা" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "৩০ মিনিট" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "৬ ঘন্টা" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" msgstr "" @@ -17,92 +53,101 @@ msgstr "" msgid "Action" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" -msgstr "" +msgstr "চালু ডিভাইসগুলো" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" -msgstr "" +msgstr "চালু ইন্টারফেসগুলো" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" -msgstr "" +msgstr "চালু উৎস" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" +msgstr "চালু সাবনেটগুলো" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" -msgstr "" +msgstr "স্বয়ংক্রিয় সাদা তালিকাভুক্ত" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" msgstr "" @@ -112,7 +157,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -140,81 +185,81 @@ msgstr "" msgid "Count SUM" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" msgstr "" @@ -233,31 +278,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." msgstr "" @@ -269,11 +314,15 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" msgstr "" @@ -281,15 +330,15 @@ msgstr "" msgid "Grant access to LuCI app banIP" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "" @@ -297,7 +346,7 @@ msgstr "" msgid "IPSet Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." msgstr "" @@ -306,73 +355,81 @@ msgstr "" msgid "IPSet Report" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" @@ -381,27 +438,39 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" msgstr "" @@ -413,44 +482,61 @@ msgstr "" msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" @@ -458,12 +544,12 @@ msgstr "" msgid "Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "" @@ -471,7 +557,7 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." msgstr "" @@ -479,42 +565,52 @@ msgstr "" msgid "Remove an existing job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" @@ -526,21 +622,21 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "" @@ -548,80 +644,92 @@ msgstr "" msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 msgid "Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" @@ -647,7 +755,7 @@ msgstr "" msgid "The minutes portion (opt., range: 0-59)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -660,9 +768,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -675,18 +783,18 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" msgstr "" @@ -696,11 +804,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "" @@ -714,17 +822,17 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -732,6 +840,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -739,7 +855,7 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." msgstr "" diff --git a/applications/luci-app-banip/po/ca/banip.po b/applications/luci-app-banip/po/ca/banip.po index 18ea3b08e6..e4d4f560ed 100644 --- a/applications/luci-app-banip/po/ca/banip.po +++ b/applications/luci-app-banip/po/ca/banip.po @@ -1,124 +1,163 @@ msgid "" msgstr "" -"PO-Revision-Date: 2019-10-25 17:59+0000\n" -"Last-Translator: Adolfo Jayme Barrientos <fitojb@ubuntu.com>\n" +"PO-Revision-Date: 2021-03-08 13:03+0000\n" +"Last-Translator: BenRoura <benrouravkg@gmail.com>\n" "Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsbanip/ca/>\n" "Language: ca\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.9.1-dev\n" +"X-Generator: Weblate 4.5.1\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:127 msgid "Action" -msgstr "" +msgstr "Acció" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" -msgstr "" +msgstr "Fonts actives" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" -msgstr "" +msgstr "Paràmetres de correu avançats" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "Directori de còpies de seguretat" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" -msgstr "" +msgstr "Fonts de la llista negra" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:22 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:73 msgid "Cancel" -msgstr "" +msgstr "Cancel•lar" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -146,81 +185,81 @@ msgstr "" msgid "Count SUM" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" -msgstr "" +msgstr "Paràmetres de descàrrega" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" -msgstr "" +msgstr "Cua de descàrregues" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "Utilitat de baixades" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" -msgstr "" +msgstr "Notificació de correu" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" -msgstr "" +msgstr "Adreça del destinatari de correu" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" msgstr "" @@ -239,31 +278,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "Edita la llista blanca" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" -msgstr "" +msgstr "Activat" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." msgstr "" @@ -275,11 +314,15 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 -msgid "General Settings" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 +msgid "General Settings" +msgstr "Paràmetres generals" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" msgstr "" @@ -287,15 +330,15 @@ msgstr "" msgid "Grant access to LuCI app banIP" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "" @@ -303,7 +346,7 @@ msgstr "" msgid "IPSet Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." msgstr "" @@ -312,73 +355,81 @@ msgstr "" msgid "IPSet Report" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "Darrera execució" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." +msgstr "Llista d’utilitats de descàrrega admeses i plenament preconfigurades." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" @@ -387,27 +438,39 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" msgstr "" @@ -419,57 +482,74 @@ msgstr "" msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "Visió de conjunt" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:96 msgid "Query" -msgstr "" +msgstr "Consulta" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "Actualitza" @@ -477,7 +557,7 @@ msgstr "Actualitza" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." msgstr "" @@ -485,46 +565,56 @@ msgstr "" msgid "Remove an existing job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" +msgstr "Reiniciar" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" -msgstr "Desa" +msgstr "Desar" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:46 msgid "" @@ -532,21 +622,21 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "" @@ -554,80 +644,92 @@ msgstr "" msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 -msgid "Settings" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 +msgid "Settings" +msgstr "Paràmetres" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" @@ -653,7 +755,7 @@ msgstr "" msgid "The minutes portion (opt., range: 0-59)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -666,9 +768,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -681,18 +783,18 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" msgstr "" @@ -702,11 +804,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "" @@ -720,17 +822,17 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "Enregistrament detallat de depuració" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -738,6 +840,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -745,7 +855,7 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." msgstr "" diff --git a/applications/luci-app-banip/po/cs/banip.po b/applications/luci-app-banip/po/cs/banip.po index 2415afc590..f67dacfb66 100644 --- a/applications/luci-app-banip/po/cs/banip.po +++ b/applications/luci-app-banip/po/cs/banip.po @@ -1,21 +1,51 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-02-02 09:02+0000\n" -"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>\n" +"PO-Revision-Date: 2021-05-07 11:32+0000\n" +"Last-Translator: Adam Salač <adam@salac.me>\n" "Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsbanip/cs/>\n" "Language: cs\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 3.11-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" +msgstr "-m limit --limit 2/sec (výchozí)" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "1 hodina" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" msgstr "" @@ -23,92 +53,101 @@ msgstr "" msgid "Action" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "Dodatečné zpoždění v sekundách před začátkem zpracování banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "Záložní adresář" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" msgstr "" @@ -116,9 +155,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:73 msgid "Cancel" -msgstr "" +msgstr "Storno" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -146,81 +185,81 @@ msgstr "" msgid "Count SUM" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "Nástroj pro stahování" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" msgstr "" @@ -239,31 +278,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "Upravit whitelist" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." msgstr "" @@ -275,11 +314,15 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" msgstr "" @@ -287,15 +330,15 @@ msgstr "" msgid "Grant access to LuCI app banIP" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "Informace o IPSet" @@ -303,7 +346,7 @@ msgstr "Informace o IPSet" msgid "IPSet Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." msgstr "" @@ -312,102 +355,122 @@ msgstr "" msgid "IPSet Report" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "Poslední spuštění" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" -msgstr "" +msgstr "Číslo řádku k odstranění" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" #: applications/luci-app-banip/luasrc/controller/banip.lua:12 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:59 msgid "Log View" -msgstr "" +msgstr "Zobrazení protokolu" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" msgstr "" @@ -419,44 +482,61 @@ msgstr "" msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "Přehled" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" @@ -464,12 +544,12 @@ msgstr "" msgid "Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "Aktualizovat" @@ -477,7 +557,7 @@ msgstr "Aktualizovat" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." msgstr "" @@ -485,42 +565,52 @@ msgstr "" msgid "Remove an existing job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" @@ -532,21 +622,21 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "" @@ -554,80 +644,92 @@ msgstr "" msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 msgid "Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" @@ -653,7 +755,7 @@ msgstr "" msgid "The minutes portion (opt., range: 0-59)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -666,9 +768,9 @@ msgstr "Výstup syslog předfiltrovaný pouze se záznamy souvisejícími s banI #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -681,18 +783,18 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" msgstr "" @@ -702,11 +804,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "Prodleva spuštění" @@ -720,17 +822,17 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "Podrobné protokolování ladění" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -738,6 +840,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -745,7 +855,7 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." msgstr "" diff --git a/applications/luci-app-banip/po/de/banip.po b/applications/luci-app-banip/po/de/banip.po index c2547bdc21..03d0416c23 100644 --- a/applications/luci-app-banip/po/de/banip.po +++ b/applications/luci-app-banip/po/de/banip.po @@ -1,528 +1,635 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-11-21 12:21+0000\n" -"Last-Translator: Andreas Götz <agoetz@tdt.de>\n" +"PO-Revision-Date: 2021-03-24 15:29+0000\n" +"Last-Translator: Glax <gfreak70@gmail.com>\n" "Language-Team: German <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsbanip/de/>\n" "Language: de\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.4-dev\n" +"X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" -msgstr "" +msgstr "-m limit --limit 2/sec (default)" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "1 Stunde" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "12 Stunden" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "24 Stunden" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "30 Minuten" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "6 Stunden" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" -msgstr "" +msgstr "Autonome Systemnummern" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:127 msgid "Action" -msgstr "" +msgstr "Aktion" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" -msgstr "" +msgstr "Aktive Geräte" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" -msgstr "" +msgstr "Aktive Schnittstellen" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" -msgstr "" +msgstr "Aktive Protokollbegriffe" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" -msgstr "" +msgstr "Aktive Quellen" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" +msgstr "Aktive Subnetze" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." msgstr "" +"Fügen Sie zusätzliche, nicht banIP-bezogene IPSets hinzu, z.B. für Berichte " +"und Abfragen." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." -msgstr "" +msgstr "Fügen Sie diese IP / CIDR Ihrer lokalen Whitelist hinzu." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" -msgstr "" +msgstr "Zusätzliche Einstellungen" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" "Zusätzliche Auslöseverzögerung in Sekunden, bevor die BanIP-Verarbeitung " "beginnt." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" -msgstr "" +msgstr "Erweiterte Ketteneinstellungen" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" -msgstr "" +msgstr "Fortgeschrittene E-Mail Einstellungen" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" -msgstr "" +msgstr "Erweiterte Protokolleinstellungen" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" -msgstr "" +msgstr "Automatische Blacklist" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" -msgstr "" +msgstr "Automatische Erkennung" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" -msgstr "" +msgstr "Automatische Whitelist" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" +"Automatische Übertragung von verdächtigen IP-Adressen aus dem Protokoll in " +"die banIP Blacklist während der Laufzeit." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" +"Automatische Übertragung von Uplink-IP-Adressen an die banIP Whitelist " +"während der Laufzeit." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "Backupverzeichnis" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" -msgstr "" +msgstr "Basis-Temp-Verzeichnis" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +"Basis Temp-Verzeichnis, das für alle banIP-bezogenen Laufzeitvorgänge " +"verwendet wird." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "Timeout der Blockierliste" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" +"Blacklist Änderungen wurden gespeichert. banIP Liste aktualisieren um " +"Änderungen anzuwenden." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" -msgstr "" +msgstr "Blockierlisten-Quellen" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:22 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:73 msgid "Cancel" -msgstr "" +msgstr "Abbrechen" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" "master/net/banip/files/README.md\" target=\"_blank\" rel=\"noreferrer " "noopener\" >check the online documentation</a>" msgstr "" +"Einstellungen des banIP Pakets zum Blockieren von IP-Adressen/Subnets via " +"IPSet. Für mehr Informationen: <a href=\"https://github.com/openwrt/packages/" +"blob/master/net/banip/files/README.md\" target=\"_blank\" rel=\"noreferrer " +"noopener\" >Die online-Dokumentation lesen</a>" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:124 msgid "Count ACC" -msgstr "" +msgstr "Anzahl ACC" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:122 msgid "Count CIDR" -msgstr "" +msgstr "Anzahl CIDR" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:121 msgid "Count IP" -msgstr "" +msgstr "Anzahl IP" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:123 msgid "Count MAC" -msgstr "" +msgstr "Anzahl MAC" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:120 msgid "Count SUM" -msgstr "" +msgstr "Anzahl SUM" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" -msgstr "" +msgstr "Länder" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" -msgstr "" +msgstr "DST IPset Typ" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" -msgstr "" +msgstr "DST Log-Optionen" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" -msgstr "" +msgstr "DST Ziel" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" -msgstr "" +msgstr "Die banIP-Standardkette lautet 'forwarding_lan_rule'" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" -msgstr "" +msgstr "Die banIP-Standardkette lautet 'forwarding_wan_rule'" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" -msgstr "" +msgstr "Die banIP-Standardkette lautet 'input_lan_rule'" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" -msgstr "" +msgstr "Die banIP-Standardkette lautet 'input_wan_rule'" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." -msgstr "" +msgstr "Erkenne automatisch alle relevanten Schnittstellen, Protokolle etc." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" -msgstr "" +msgstr "Download Parameter" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" -msgstr "" +msgstr "Download Warteschlange" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "Download-Werkzeug" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" -msgstr "" +msgstr "E-Mail-Aktionen" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" -msgstr "" +msgstr "E-Mail-Benachrichtigung" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" -msgstr "" +msgstr "E-Mail-Profil" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" -msgstr "" +msgstr "E-Mail Empfängeradresse" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" -msgstr "" +msgstr "E-Mail Absenderadresse" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" -msgstr "" +msgstr "E-Mail-Thema" #: applications/luci-app-banip/luasrc/controller/banip.lua:9 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:35 msgid "Edit Blacklist" -msgstr "Blackliste bearbeiten" +msgstr "Blockierliste bearbeiten" #: applications/luci-app-banip/luasrc/controller/banip.lua:11 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 msgid "Edit Maclist" -msgstr "" +msgstr "MAC-Liste bearbeiten" #: applications/luci-app-banip/luasrc/controller/banip.lua:10 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:43 msgid "Edit Whitelist" -msgstr "Whiteliste bearbeiten" +msgstr "Positivliste bearbeiten" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" -msgstr "" +msgstr "DST Logging einschalten" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" -msgstr "" +msgstr "SRC Logging einschalten" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." -msgstr "" +msgstr "Aktiviere den banIP-Service." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" +"Aktiviere das ausführliche Anwendungs-Logging bei Verarbeitungsfehlern." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" -msgstr "" +msgstr "Aktiviert" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." -msgstr "" +msgstr "Aktiviere IPv4-Unterstützung in banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." -msgstr "" +msgstr "Aktiviere IPv6-Unterstützung in banIP." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:125 msgid "Entry Details" -msgstr "" +msgstr "Details" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:18 msgid "Existing job(s)" -msgstr "" +msgstr "Bestehende Job(s)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" +msgstr "Spezielle Quellen" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" -msgstr "" +msgstr "Allgemeine Einstellungen" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" -msgstr "" +msgstr "Globaler IPSet Typ" #: applications/luci-app-banip/root/usr/share/rpcd/acl.d/luci-app-banip.json:3 msgid "Grant access to LuCI app banIP" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" -msgstr "" +msgstr "Hohe Priorität" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" -msgstr "" +msgstr "Höchste Priorität" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "IPSet-Information" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:45 msgid "IPSet Query" -msgstr "" +msgstr "IPSet Suche" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." -msgstr "" +msgstr "IPSet Suche..." #: applications/luci-app-banip/luasrc/controller/banip.lua:8 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:27 msgid "IPSet Report" -msgstr "" +msgstr "IPSet Report" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" -msgstr "" +msgstr "IPSet Details" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" -msgstr "" +msgstr "IPv4 Unterstützung" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" -msgstr "" +msgstr "IPv6 Unterstützung" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" -msgstr "" +msgstr "Informationen" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" -msgstr "" +msgstr "LAN Forward" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" -msgstr "" +msgstr "LAN Input" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" -msgstr "Letzter Lauf" +msgstr "Letzter Durchgang" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" -msgstr "" +msgstr "Niedrigste Priorität" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" -msgstr "" +msgstr "Niedrige Priorität" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." -msgstr "" +msgstr "Beschränke den E-Mail-Trigger auf bestimmte banIP-Aktionen." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." -msgstr "" +msgstr "Beschränke den Log-Monitor auf bestimmte Suchbegriffe." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "Beschränke die Auswahl an lokalen Quellen." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" -msgstr "" +msgstr "Zu entfernende Zeile" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" +"Liste der unterstützten und vollständig vorkonfigurierten Download-" +"Hilfsprogramme." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "Lokale Quellen" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" #: applications/luci-app-banip/luasrc/controller/banip.lua:12 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:59 msgid "Log View" -msgstr "" +msgstr "Protokollansicht" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" -msgstr "" +msgstr "Name" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:88 msgid "No Query results!" -msgstr "" +msgstr "Keine Abfrageergebnisse!" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/logread.js:21 msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "Übersicht" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:96 msgid "Query" -msgstr "" +msgstr "Abfrage" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "Aktualisieren" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:15 msgid "Refresh Timer" -msgstr "" +msgstr "Timer" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." -msgstr "" +msgstr "Timer..." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:62 msgid "Remove an existing job" -msgstr "" +msgstr "Entferne einen vorhandenen Job" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" -msgstr "" +msgstr "Report-Verzeichnis" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" +msgstr "Neustart" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" -msgstr "" +msgstr "Ergebnis" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" -msgstr "" +msgstr "Laufzeit-Flags" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" @@ -534,21 +641,21 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "" @@ -556,106 +663,119 @@ msgstr "" msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 -msgid "Settings" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 +msgid "Settings" +msgstr "Einstellungen" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" +"Spezielle Konfigurationseinstellungen für das gewählte Download-Programm." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" -msgstr "" +msgstr "Trigger-Interface fürs Starten" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" -msgstr "" +msgstr "Status / Version" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" -msgstr "" +msgstr "Anhalten" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:87 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:96 msgid "The Refresh Timer could not been updated." -msgstr "" +msgstr "Der Timer konnte nicht aktualisiert werden." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:89 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:98 msgid "The Refresh Timer has been updated." -msgstr "" +msgstr "Der Timer wurde aktualisiert." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:57 msgid "The day of the week (opt., values: 1-7 possibly sep. by , or -)" -msgstr "" +msgstr "Der Wochentag (opt., Werte: 1-7 getrennt druch \",\" oder \"-\")" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:47 msgid "The hours portition (req., range: 0-23)" -msgstr "" +msgstr "Der Stundenteil (Werte zw. 0-23)" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:52 msgid "The minutes portion (opt., range: 0-59)" -msgstr "" +msgstr "Der Minutenteil (Werte zw. 0-59)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -668,9 +788,9 @@ msgstr "Die Syslog-Ausgabe, vorgefiltert mit nur BanIP-bezogene Nachrichten." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -683,18 +803,18 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" msgstr "" @@ -704,11 +824,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "Verzögerung der Trigger-Bedingung" @@ -720,19 +840,19 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:17 msgid "Unable to save changes: %s" -msgstr "" +msgstr "Konnte Änderungen nicht speichern: %s" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "Ausführliche Debug-Protokollierung" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -740,6 +860,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -747,9 +875,9 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." -msgstr "" +msgstr "Positivliste..." #: applications/luci-app-banip/luasrc/controller/banip.lua:6 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:3 diff --git a/applications/luci-app-banip/po/el/banip.po b/applications/luci-app-banip/po/el/banip.po index bbe8cbc058..19bfd483f9 100644 --- a/applications/luci-app-banip/po/el/banip.po +++ b/applications/luci-app-banip/po/el/banip.po @@ -1,21 +1,51 @@ msgid "" msgstr "" -"PO-Revision-Date: 2019-12-03 08:26+0000\n" -"Last-Translator: Tavaninja <metalcorpe@gmail.com>\n" +"PO-Revision-Date: 2021-04-17 10:26+0000\n" +"Last-Translator: MarioK239 <marios.k239@gmail.com>\n" "Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsbanip/el/>\n" "Language: el\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.10-dev\n" +"X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" msgstr "" @@ -23,92 +53,101 @@ msgstr "" msgid "Action" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "φάκελος διάσωσης" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" msgstr "" @@ -116,9 +155,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:73 msgid "Cancel" -msgstr "" +msgstr "Ακύρωση" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -146,81 +185,81 @@ msgstr "" msgid "Count SUM" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" msgstr "" @@ -239,31 +278,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." msgstr "" @@ -275,11 +314,15 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" msgstr "" @@ -287,15 +330,15 @@ msgstr "" msgid "Grant access to LuCI app banIP" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "" @@ -303,7 +346,7 @@ msgstr "" msgid "IPSet Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." msgstr "" @@ -312,73 +355,81 @@ msgstr "" msgid "IPSet Report" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" @@ -387,27 +438,39 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" msgstr "" @@ -419,44 +482,61 @@ msgstr "" msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" @@ -464,12 +544,12 @@ msgstr "" msgid "Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "" @@ -477,7 +557,7 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." msgstr "" @@ -485,42 +565,52 @@ msgstr "" msgid "Remove an existing job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" @@ -532,21 +622,21 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "" @@ -554,80 +644,92 @@ msgstr "" msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 msgid "Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" @@ -653,7 +755,7 @@ msgstr "" msgid "The minutes portion (opt., range: 0-59)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -666,9 +768,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -681,18 +783,18 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" msgstr "" @@ -702,11 +804,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "" @@ -720,17 +822,17 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -738,6 +840,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -745,7 +855,7 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." msgstr "" diff --git a/applications/luci-app-banip/po/en/banip.po b/applications/luci-app-banip/po/en/banip.po index 2f9f505ea4..243fbb37b7 100644 --- a/applications/luci-app-banip/po/en/banip.po +++ b/applications/luci-app-banip/po/en/banip.po @@ -4,12 +4,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" msgstr "" @@ -17,92 +47,101 @@ msgstr "" msgid "Action" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" msgstr "" @@ -112,7 +151,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -140,81 +179,81 @@ msgstr "" msgid "Count SUM" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" msgstr "" @@ -233,31 +272,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." msgstr "" @@ -269,11 +308,15 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" msgstr "" @@ -281,15 +324,15 @@ msgstr "" msgid "Grant access to LuCI app banIP" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "" @@ -297,7 +340,7 @@ msgstr "" msgid "IPSet Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." msgstr "" @@ -306,73 +349,81 @@ msgstr "" msgid "IPSet Report" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" @@ -381,27 +432,39 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" msgstr "" @@ -413,44 +476,61 @@ msgstr "" msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" @@ -458,12 +538,12 @@ msgstr "" msgid "Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "" @@ -471,7 +551,7 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." msgstr "" @@ -479,42 +559,52 @@ msgstr "" msgid "Remove an existing job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" @@ -526,21 +616,21 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "" @@ -548,80 +638,92 @@ msgstr "" msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 msgid "Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" @@ -647,7 +749,7 @@ msgstr "" msgid "The minutes portion (opt., range: 0-59)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -660,9 +762,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -675,18 +777,18 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" msgstr "" @@ -696,11 +798,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "" @@ -714,17 +816,17 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -732,6 +834,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -739,7 +849,7 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." msgstr "" diff --git a/applications/luci-app-banip/po/es/banip.po b/applications/luci-app-banip/po/es/banip.po index f2ae67d409..8a61cda242 100644 --- a/applications/luci-app-banip/po/es/banip.po +++ b/applications/luci-app-banip/po/es/banip.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2019-07-23 22:17-0300\n" -"PO-Revision-Date: 2020-05-02 10:21+0000\n" +"PO-Revision-Date: 2021-05-10 09:32+0000\n" "Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsbanip/es/>\n" @@ -11,223 +11,278 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" -msgstr "" +msgstr "-m limit --limit 2/sec (predeterminado)" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "1 hora" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "12 horas" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "24 horas" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "30 minutos" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "6 horas" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" -msgstr "" +msgstr "ASNs" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:127 msgid "Action" -msgstr "" +msgstr "Acción" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" -msgstr "" +msgstr "Dispositivos activos" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" -msgstr "" +msgstr "Interfaces activas" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" -msgstr "" +msgstr "Términos de registro activos" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" -msgstr "" +msgstr "Fuentes activas" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" +msgstr "Subredes activas" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." msgstr "" +"Agregue IPSets adicionales no relacionados con banIP, p. Ej. para informes y " +"consultas." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." -msgstr "" +msgstr "Agregue esta IP/CIDR a su lista blanca local." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" -msgstr "" +msgstr "Configuración adicional" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" "Demora adicional del disparador en segundos antes de que comience el " "procesamiento de banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" -msgstr "" +msgstr "Configuración de cadena avanzada" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" -msgstr "" +msgstr "Configuración avanzada de correo electrónico" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" -msgstr "" +msgstr "Configuración de registro avanzada" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" -msgstr "" +msgstr "Lista negra automática" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" -msgstr "" +msgstr "Detección automática" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" -msgstr "" +msgstr "Lista blanca automática" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" +"Transfiere automáticamente las direcciones IP sospechosas del registro a la " +"lista negra de banIP durante el tiempo de ejecución." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" +"Transfiere automáticamente IPs de enlace ascendente a la lista blanca banIP " +"durante el tiempo de ejecución." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "Directorio de respaldo" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" -msgstr "" +msgstr "Directorio temporal base" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +"Directorio temporal base utilizado para todas las operaciones en tiempo de " +"ejecución relacionadas con banIP." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "Tiempo de espera de lista negra" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" +"Se han guardado los cambios de la lista negra. Actualice sus listas de banIP " +"para que los cambios surtan efecto." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" -msgstr "" +msgstr "Fuentes de lista de bloqueo" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:22 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:73 msgid "Cancel" -msgstr "" +msgstr "Cancelar" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" "master/net/banip/files/README.md\" target=\"_blank\" rel=\"noreferrer " "noopener\" >check the online documentation</a>" msgstr "" +"Configuración del paquete banIP para bloquear direcciones/subredes ip a " +"través de IPSet. Para obtener más información <a href=\"https://github.com/" +"openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank\" " +"rel=\"noreferrer noopener\" >consulte la documentación en línea</a>" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:124 msgid "Count ACC" -msgstr "" +msgstr "Cuenta ACC" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:122 msgid "Count CIDR" -msgstr "" +msgstr "Cuenta CIDR" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:121 msgid "Count IP" -msgstr "" +msgstr "Cuenta IP" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:123 msgid "Count MAC" -msgstr "" +msgstr "Cuenta MAC" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:120 msgid "Count SUM" -msgstr "" +msgstr "Cuenta SUM" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" -msgstr "" +msgstr "Países" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" -msgstr "" +msgstr "Tipo de IPSet DST" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" -msgstr "" +msgstr "Opciones de registro DST" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" -msgstr "" +msgstr "Objetivo DST" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" -msgstr "" +msgstr "La cadena predeterminada utilizada por banIP es 'forwarding_lan_rule'" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" -msgstr "" +msgstr "La cadena predeterminada utilizada por banIP es 'forwarding_wan_rule'" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" -msgstr "" +msgstr "La cadena predeterminada utilizada por banIP es 'input_lan_rule'" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" -msgstr "" +msgstr "La cadena predeterminada utilizada por banIP es 'input_wan_rule'" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" +"Detecte interfaces de red, dispositivos, subredes y protocolos relevantes " +"automáticamente." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" -msgstr "" +msgstr "Descargar parámetros" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" -msgstr "" +msgstr "Cola de descarga" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "Utilidad de descarga" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" -msgstr "" +msgstr "Acciones de correo electrónico" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" -msgstr "" +msgstr "Notificación por correo electrónico" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" -msgstr "" +msgstr "Perfil de correo electrónico" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" -msgstr "" +msgstr "Dirección del destinatario de correo electrónico" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" -msgstr "" +msgstr "Dirección del remitente de correo electrónico" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" -msgstr "" +msgstr "Tema del correo electrónico" #: applications/luci-app-banip/luasrc/controller/banip.lua:9 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:35 @@ -237,295 +292,368 @@ msgstr "Editar lista negra" #: applications/luci-app-banip/luasrc/controller/banip.lua:11 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 msgid "Edit Maclist" -msgstr "" +msgstr "Editar Maclist" #: applications/luci-app-banip/luasrc/controller/banip.lua:10 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:43 msgid "Edit Whitelist" msgstr "Editar lista blanca" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" -msgstr "" +msgstr "Activar el registro de DST" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" -msgstr "" +msgstr "Activar el registro de SRC" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." -msgstr "" +msgstr "Activar el servicio banIP.." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" +"Activar el registro de depuración detallado en caso de errores de " +"procesamiento." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" -msgstr "" +msgstr "Activado" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." -msgstr "" +msgstr "Activa la compatibilidad con IPv4 en banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." -msgstr "" +msgstr "Activa la compatibilidad con IPv6 en banIP." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:125 msgid "Entry Details" -msgstr "" +msgstr "Detalles de entrada" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:18 msgid "Existing job(s)" -msgstr "" +msgstr "Trabajo(s) existente(s)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" +msgstr "Fuentes extra" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" -msgstr "" +msgstr "Configuración general" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" -msgstr "" +msgstr "Tipo de IPSet global" #: applications/luci-app-banip/root/usr/share/rpcd/acl.d/luci-app-banip.json:3 msgid "Grant access to LuCI app banIP" -msgstr "" +msgstr "Otorgar acceso a la aplicación banIP de LuCI" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" -msgstr "" +msgstr "Alta prioridad" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" -msgstr "" +msgstr "Prioridad más alta" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "Información de IPSet" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:45 msgid "IPSet Query" -msgstr "" +msgstr "Consulta IPSet" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." -msgstr "" +msgstr "Consulta IPSet..." #: applications/luci-app-banip/luasrc/controller/banip.lua:8 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:27 msgid "IPSet Report" -msgstr "" +msgstr "Informe IPSet" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" -msgstr "" +msgstr "Detalles del IPSet" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" -msgstr "" +msgstr "Soporte IPv4" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" -msgstr "" +msgstr "Soporte IPv6" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" -msgstr "" +msgstr "Información" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" -msgstr "" +msgstr "Reenvío LAN" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" -msgstr "" +msgstr "Entrada LAN" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "Último inicio" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" -msgstr "" +msgstr "Prioridad mínima" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" -msgstr "" +msgstr "Menos prioridad" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" +"Limite el disparador de correo electrónico a determinadas acciones de banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." -msgstr "" +msgstr "Limite el monitor de registro a ciertos términos de registro." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "Limite la selección a determinadas fuentes locales." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" -msgstr "" +msgstr "Número de línea para eliminar" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 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:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" "Lista de utilidades de descarga totalmente preconfiguradas y compatibles." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "Fuentes locales" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" -msgstr "" +msgstr "Límite de registro" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" -msgstr "" +msgstr "Monitor de registro" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" -msgstr "" +msgstr "Términos de registro" #: applications/luci-app-banip/luasrc/controller/banip.lua:12 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:59 msgid "Log View" -msgstr "" +msgstr "Vista de registro" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." -msgstr "" +msgstr "Registre los paquetes entrantes sospechosos, generalmente descartados." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +"Registre los paquetes salientes sospechosos, generalmente rechazados. El " +"registro de dichos paquetes puede provocar un aumento de la latencia debido " +"a que requiere recursos adicionales del sistema." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "Contador de registro de LuCI" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "Tiempo de espera de Maclist" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +"Se han guardado los cambios de Maclist. Actualice sus listas de banIP para " +"que los cambios surtan efecto." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "Contador de registro de NGINX" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" -msgstr "" +msgstr "Nombre" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" -msgstr "" +msgstr "Interfaces de red" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:88 msgid "No Query results!" -msgstr "" +msgstr "¡No hay resultados de consulta!" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/logread.js:21 msgid "No banIP related logs yet!" -msgstr "" +msgstr "¡Aún no hay registros relacionados con banIP!" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" -msgstr "" +msgstr "Prioridad normal (predeterminado)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" -msgstr "" +msgstr "Número de entradas CIDR" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" -msgstr "" +msgstr "Número de entradas de IP" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" -msgstr "" +msgstr "Número de entradas MAC" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" -msgstr "" +msgstr "Número de entradas accedidas" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" -msgstr "" +msgstr "Número de todos los IPSets" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" +msgstr "Número de todas las entradas" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" +"Número de intentos de acceso desde la misma ip en el registro antes de " +"bloquear." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" +"Número de solicitudes nginx fallidas de la misma IP en el registro antes de " +"bloquear." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." msgstr "" +"Número de repeticiones de inicio de sesión ssh fallidas de la misma IP en el " +"registro antes de bloquear." #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" -msgstr "Visión general" +msgstr "Vista general" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" +"Analice solo el último número indicado de entradas de registro para detectar " +"eventos sospechosos." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" +"Perfil utilizado por 'msmtp' para correos electrónicos de notificación de " +"banIP." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:96 msgid "Query" -msgstr "" +msgstr "Consulta" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" +"Dirección del receptor de los correos electrónicos de notificación de banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "Refrescar" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:15 msgid "Refresh Timer" -msgstr "" +msgstr "Temporizador de actualización" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." -msgstr "" +msgstr "Actualizar temporizador..." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:62 msgid "Remove an existing job" -msgstr "" +msgstr "Eliminar un trabajo existente" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" -msgstr "" +msgstr "Directorio de informes" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" +msgstr "Reiniciar" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." msgstr "" +"Restrinja el acceso a Internet desde/hacia una pequeña cantidad de sitios " +"web/IP seguros y bloquee el acceso desde/hacia el resto de Internet." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" -msgstr "" +msgstr "Resultado" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" -msgstr "" +msgstr "Ejecutar banderas" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" -msgstr "" +msgstr "Ejecutar información" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" -msgstr "" +msgstr "Tipo IPSet SRC" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" -msgstr "" +msgstr "Opciones de registro SRC" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" -msgstr "" +msgstr "Objetivo SRC" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" -msgstr "" +msgstr "Tipo de IPSet SRC+DST" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "Cuenta de registros SSH" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 @@ -537,133 +665,178 @@ msgid "" "Search the active banIP-related IPSets for a specific IP, CIDR or MAC " "address." msgstr "" +"Busque los IPSets activos relacionados con banIP para una dirección IP, CIDR " +"o MAC específica." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." -msgstr "" +msgstr "Seleccione las interfaces de red relevantes manualmente." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" +"Envíe correos electrónicos de notificación relacionados con banIP. Esto " +"necesita la instalación y configuración del paquete adicional 'msmtp'." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" +"Dirección del remitente para correos electrónicos de notificación de banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" -msgstr "" +msgstr "Prioridad de servicio" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "Set a new banIP job" -msgstr "" +msgstr "Establecer un nuevo trabajo banIP" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" +"Configure el tipo de DST individual por IPset para bloquear solo los " +"paquetes salientes." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" +"Configure el tipo de SRC individual por IPset para bloquear solo los " +"paquetes entrantes." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" +"Configure el tipo de SRC+DST individual por IPset para bloquear los paquetes " +"entrantes y salientes." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" +"Establecer opciones especiales de registro DST, p. Ej. para establecer una " +"tasa límite." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" +"Configure opciones especiales de registro de SRC, por ejemplo, para " +"establecer una tasa límite." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "Configure el tiempo de espera de IPSet de la lista negra." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" +"Establezca el destino del firewall para todas las reglas relacionadas con " +"DST." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" +"Establezca el objetivo del firewall para todas las reglas relacionadas con " +"SRC." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" +"Establezca el tipo de IPset global predeterminado para bloquear los paquetes " +"entrantes (SRC) y/o salientes (DST)." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." +msgstr "Establezca el tiempo de espera de maclist IPSet." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "Establezca el tiempo de espera de IPSet de la lista blanca." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 msgid "Settings" -msgstr "" +msgstr "Configuraciones" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" +"Tamaño de la cola de descarga para el procesamiento de descargas en paralelo." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" -msgstr "" +msgstr "Fuentes (Información)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" +"Opciones de configuración especiales para la utilidad de descarga " +"seleccionada." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" +"Inicia un pequeño monitor de registro en segundo plano para bloquear " +"intentos sospechosos de inicio de sesión SSH/LuCI." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" -msgstr "" +msgstr "Interfaz de activación de inicio" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" -msgstr "" +msgstr "Estado/Versión" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" -msgstr "" +msgstr "Suspender" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" +"Directorio de destino para archivos de informes relacionados con IPSet." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" +"Directorio de destino para copias de seguridad de listas de origen " +"comprimidas." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:87 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:96 msgid "The Refresh Timer could not been updated." -msgstr "" +msgstr "No se pudo actualizar el temporizador de actualización." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:89 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:98 msgid "The Refresh Timer has been updated." -msgstr "" +msgstr "Se ha actualizado el temporizador de actualización." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:57 msgid "The day of the week (opt., values: 1-7 possibly sep. by , or -)" msgstr "" +"El día de la semana (opt., valores: 1-7 posiblemente separados por , o -)" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:47 msgid "The hours portition (req., range: 0-23)" -msgstr "" +msgstr "El reparto de horas (req., rango: 0-23)" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:52 msgid "The minutes portion (opt., range: 0-59)" -msgstr "" +msgstr "La porción de minutos (opcional, rango: 0-59)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." msgstr "" +"La prioridad seleccionada se utilizará para el procesamiento en segundo " +"plano de banIP. Este cambio requiere un reinicio completo del servicio banIP " +"para que surta efecto." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/logread.js:28 msgid "The syslog output, pre-filtered for banIP related messages only." @@ -673,10 +846,15 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" +"Esta es la lista negra local de banIP para denegar siempre ciertas " +"direcciones IP/CIDR. <br /> <em> <b>Tenga en cuenta:</b> </em> agregue solo " +"una dirección IPv4, una dirección IPv6 o un nombre de dominio por línea . " +"Los comentarios introducidos con '#' están permitidos; los comodines y las " +"expresiones regulares no." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 msgid "" @@ -684,66 +862,87 @@ msgid "" "<em><b>Please note:</b></em> add only one MAC address per line. Comments " "introduced with '#' are allowed - domains, wildcards and regex are not." msgstr "" +"Este es el maclist banIP local para permitir siempre ciertas direcciones " +"MAC. <br /> <em> <b>Tenga en cuenta:</b> </em> agregue solo una dirección " +"MAC por línea. Se permiten los comentarios introducidos con '#'; los " +"dominios, los comodines y las expresiones regulares no." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" +"Esta es la lista blanca local de banIP para permitir siempre ciertas " +"direcciones IP/CIDR.<br /> <em> <b>Tenga en cuenta:</b> </em> agregue solo " +"una dirección IPv4, una dirección IPv6 o un nombre de dominio por línea. Los " +"comentarios introducidos con '#' están permitidos; los comodines y las " +"expresiones regulares no." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" +"Esta pestaña muestra el último informe IPSet generado, presione el botón " +"'Actualizar' para obtener uno actual." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" -msgstr "" +msgstr "Marca de tiempo" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:16 msgid "" "To keep your banIP lists up-to-date, you should setup an automatic update " "job for these lists." msgstr "" +"Para mantener actualizadas sus listas de banIP, debe configurar un trabajo " +"de actualización automática para estas listas." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." -msgstr "" +msgstr "Tema para correos electrónicos de notificación de banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "Retraso de disparo" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:119 msgid "Type" -msgstr "" +msgstr "Tipo" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:17 msgid "Unable to save changes: %s" -msgstr "" +msgstr "No se pudo guardar los cambios: %s" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "Registro de depuración detallado" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" -msgstr "" +msgstr "Reenvío WAN" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" -msgstr "" +msgstr "Entrada WAN" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:11 msgid "Whitelist IP/CIDR" -msgstr "" +msgstr "Lista blanca de IP/CIDR" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "Solo lista blanca" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "Tiempo de espera de lista blanca" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 @@ -751,10 +950,12 @@ msgid "" "Whitelist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" +"Se han guardado los cambios de la lista blanca. Actualice sus listas de " +"banIP para que los cambios surtan efecto." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." -msgstr "" +msgstr "Lista blanca..." #: applications/luci-app-banip/luasrc/controller/banip.lua:6 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:3 @@ -763,7 +964,31 @@ msgstr "banIP" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:41 msgid "banIP action" -msgstr "" +msgstr "Acción banIP" + +#~ msgid "" +#~ "This is the local banIP blacklist to always-deny certain IP/CIDR " +#~ "addresses.<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 " +#~ "address per line. Comments introduced with '#' are allowed - domains, " +#~ "wildcards and regex are not." +#~ msgstr "" +#~ "Esta es la lista negra de banIP local para denegar siempre ciertas " +#~ "direcciones IP/CIDR. <br /> <em> <b>Tenga en cuenta:</b> </em> agregue " +#~ "solo una dirección IPv4 o IPv6 por línea. Se permiten los comentarios " +#~ "introducidos con '#'; los dominios, los comodines y las expresiones " +#~ "regulares no." + +#~ msgid "" +#~ "This is the local banIP whitelist to always allow certain IP/CIDR " +#~ "addresses.<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 " +#~ "address or per line. Comments introduced with '#' are allowed - domains, " +#~ "wildcards and regex are not." +#~ msgstr "" +#~ "Esta es la lista blanca local de banIP para permitir siempre ciertas " +#~ "direcciones IP/CIDR. <br /> <em> <b>Tenga en cuenta:</b> </em> agregue " +#~ "solo una dirección IPv4 o IPv6 o por línea. Se permiten los comentarios " +#~ "introducidos con '#'; los dominios, los comodines y las expresiones " +#~ "regulares no." #~ msgid "ASN Overview" #~ msgstr "Resumen de ASN" diff --git a/applications/luci-app-banip/po/fi/banip.po b/applications/luci-app-banip/po/fi/banip.po index ee7ce4e1c4..8f3f0d7307 100644 --- a/applications/luci-app-banip/po/fi/banip.po +++ b/applications/luci-app-banip/po/fi/banip.po @@ -10,12 +10,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.2-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" msgstr "" @@ -23,92 +53,101 @@ msgstr "" msgid "Action" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "Varmuuskopiohakemisto" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" msgstr "" @@ -118,7 +157,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -146,81 +185,81 @@ msgstr "" msgid "Count SUM" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "Lataustyökalu" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" msgstr "" @@ -239,31 +278,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "Editoi sallittujen lista" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." msgstr "" @@ -275,11 +314,15 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" msgstr "" @@ -287,15 +330,15 @@ msgstr "" msgid "Grant access to LuCI app banIP" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "" @@ -303,7 +346,7 @@ msgstr "" msgid "IPSet Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." msgstr "" @@ -312,73 +355,81 @@ msgstr "" msgid "IPSet Report" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "Viimeksi ajettu" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" @@ -387,27 +438,39 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" msgstr "" @@ -419,44 +482,61 @@ msgstr "" msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "Yleiskatsaus" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" @@ -464,12 +544,12 @@ msgstr "" msgid "Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "Päivitä" @@ -477,7 +557,7 @@ msgstr "Päivitä" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." msgstr "" @@ -485,42 +565,52 @@ msgstr "" msgid "Remove an existing job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" @@ -532,21 +622,21 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "" @@ -554,80 +644,92 @@ msgstr "" msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 msgid "Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" @@ -653,7 +755,7 @@ msgstr "" msgid "The minutes portion (opt., range: 0-59)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -666,9 +768,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -681,18 +783,18 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" msgstr "" @@ -702,11 +804,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "" @@ -720,17 +822,17 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -738,6 +840,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -745,7 +855,7 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." msgstr "" diff --git a/applications/luci-app-banip/po/fr/banip.po b/applications/luci-app-banip/po/fr/banip.po index 4c2b07fb59..5dda2e6f38 100644 --- a/applications/luci-app-banip/po/fr/banip.po +++ b/applications/luci-app-banip/po/fr/banip.po @@ -1,126 +1,165 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-06-20 14:41+0000\n" -"Last-Translator: ButterflyOfFire <ButterflyOfFire@protonmail.com>\n" +"PO-Revision-Date: 2021-04-25 02:37+0000\n" +"Last-Translator: localhost61 <xmh.rpi+weblate@free.fr>\n" "Language-Team: French <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsbanip/fr/>\n" "Language: fr\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" -msgstr "" +msgstr "-m limit --limit 2/sec (défaut)" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "1 heure" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "12 heures" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "24 heures" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "30 minutes" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "6 heures" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:127 msgid "Action" -msgstr "" +msgstr "Action" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" -msgstr "" +msgstr "Sources Actives" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" -msgstr "" +msgstr "Paramètres supplémentaires" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" "Délai de déclenchement supplémentaire en secondes avant le début du " "traitement banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" -msgstr "" +msgstr "Paramètres d'e-mail avancés" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "Répertoire de sauvegarde" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" -msgstr "" +msgstr "Répertoire Temporaire" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" -msgstr "" +msgstr "Sources de la liste de blocage" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:22 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:73 msgid "Cancel" -msgstr "" +msgstr "Annuler" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -148,83 +187,83 @@ msgstr "" msgid "Count SUM" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" -msgstr "" +msgstr "Paramètres de téléchargement" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" -msgstr "" +msgstr "File d'attente de téléchargement" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "Télécharger l'utilitaire" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" -msgstr "" +msgstr "Notification par e-mail" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" -msgstr "" +msgstr "E-mail du profil" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" -msgstr "" +msgstr "Adresse e-mail du destinataire" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" -msgstr "" +msgstr "Adresse e-mail de l'expéditeur" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" -msgstr "" +msgstr "Objet de l'e-mail" #: applications/luci-app-banip/luasrc/controller/banip.lua:9 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:35 @@ -241,31 +280,33 @@ msgstr "" msgid "Edit Whitelist" msgstr "Modifier la liste blanche" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" +"Activez la journalisation de débogage verbeuse en cas d'erreurs de " +"traitement." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" -msgstr "" +msgstr "Activé" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." msgstr "" @@ -275,13 +316,17 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:18 msgid "Existing job(s)" +msgstr "Travaux en cours" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" -msgstr "" +msgstr "Paramètres généraux" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" msgstr "" @@ -289,15 +334,15 @@ msgstr "" msgid "Grant access to LuCI app banIP" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "Informations IPSet" @@ -305,7 +350,7 @@ msgstr "Informations IPSet" msgid "IPSet Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." msgstr "" @@ -314,215 +359,264 @@ msgstr "" msgid "IPSet Report" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" -msgstr "" +msgstr "Information" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "Dernière exécution" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" -msgstr "" +msgstr "Numéro de la ligne à supprimer" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" +"Liste des utilitaires de téléchargement pris en charge et entièrement pré-" +"configurés." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" #: applications/luci-app-banip/luasrc/controller/banip.lua:12 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:59 msgid "Log View" -msgstr "" +msgstr "Vue du journal" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" -msgstr "" +msgstr "Nom" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:88 msgid "No Query results!" -msgstr "" +msgstr "Pas de résultats de recherche !" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/logread.js:21 msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" -msgstr "Vue d’ensemble" +msgstr "Aperçu" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:96 msgid "Query" -msgstr "" +msgstr "Requête" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "Actualiser" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:15 msgid "Refresh Timer" -msgstr "" +msgstr "Minuteur d'actualisation" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." -msgstr "" +msgstr "Minuteur d'actualisation..." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:62 msgid "Remove an existing job" -msgstr "" +msgstr "Supprimer un travail existant" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" -msgstr "" +msgstr "Répertoire des rapports" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" +msgstr "Redémarrer" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" -msgstr "" +msgstr "Résultat" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" -msgstr "" +msgstr "Drapeaux d'exécution" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" @@ -534,21 +628,21 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "" @@ -556,106 +650,121 @@ msgstr "" msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 -msgid "Settings" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 +msgid "Settings" +msgstr "Paramètres" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" +"Options de configuration spéciales pour l'utilitaire de téléchargement " +"sélectionné." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" -msgstr "" +msgstr "Interface des déclencheurs de démarrage" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" -msgstr "" +msgstr "Statut / Version" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" -msgstr "" +msgstr "Mettre en pause" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:87 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:96 msgid "The Refresh Timer could not been updated." -msgstr "" +msgstr "Le minuteur d'actualisation n'a pas pu être mise à jour." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:89 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:98 msgid "The Refresh Timer has been updated." -msgstr "" +msgstr "Minuteur d'actualisation mis à jour." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:57 msgid "The day of the week (opt., values: 1-7 possibly sep. by , or -)" msgstr "" +"Le jour de la semaine (opt., valeurs : 1-7 éventuellement sép. par , ou -)" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:47 msgid "The hours portition (req., range: 0-23)" -msgstr "" +msgstr "La répartition des heures (req., plage : 0-23)" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:52 msgid "The minutes portion (opt., range: 0-59)" -msgstr "" +msgstr "La répartition des minutes (req., plage : 0-59)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -669,9 +778,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -684,18 +793,18 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" msgstr "" @@ -705,35 +814,35 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "Délai de déclenchement" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:119 msgid "Type" -msgstr "" +msgstr "Type" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:17 msgid "Unable to save changes: %s" -msgstr "" +msgstr "Sauvegarde impossible : %s" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "Logs en mode verbeux" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -741,6 +850,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -748,9 +865,9 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." -msgstr "" +msgstr "Liste Blanche..." #: applications/luci-app-banip/luasrc/controller/banip.lua:6 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:3 diff --git a/applications/luci-app-banip/po/he/banip.po b/applications/luci-app-banip/po/he/banip.po index dfc5301b92..deb7ca32fb 100644 --- a/applications/luci-app-banip/po/he/banip.po +++ b/applications/luci-app-banip/po/he/banip.po @@ -11,12 +11,42 @@ msgstr "" "n % 10 == 0) ? 2 : 3));\n" "X-Generator: Weblate 4.5-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" msgstr "" @@ -24,92 +54,101 @@ msgstr "" msgid "Action" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" msgstr "" @@ -119,7 +158,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -147,81 +186,81 @@ msgstr "" msgid "Count SUM" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" msgstr "" @@ -240,31 +279,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." msgstr "" @@ -276,11 +315,15 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" msgstr "" @@ -288,15 +331,15 @@ msgstr "" msgid "Grant access to LuCI app banIP" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "" @@ -304,7 +347,7 @@ msgstr "" msgid "IPSet Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." msgstr "" @@ -313,73 +356,81 @@ msgstr "" msgid "IPSet Report" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" @@ -388,27 +439,39 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" msgstr "" @@ -420,44 +483,61 @@ msgstr "" msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" @@ -465,12 +545,12 @@ msgstr "" msgid "Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "" @@ -478,7 +558,7 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." msgstr "" @@ -486,42 +566,52 @@ msgstr "" msgid "Remove an existing job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" @@ -533,21 +623,21 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "" @@ -555,80 +645,92 @@ msgstr "" msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 msgid "Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" @@ -654,7 +756,7 @@ msgstr "" msgid "The minutes portion (opt., range: 0-59)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -667,9 +769,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -682,18 +784,18 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" msgstr "" @@ -703,11 +805,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "" @@ -721,17 +823,17 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -739,6 +841,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -746,7 +856,7 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." msgstr "" diff --git a/applications/luci-app-banip/po/hi/banip.po b/applications/luci-app-banip/po/hi/banip.po index 7c1b141716..11742dacb1 100644 --- a/applications/luci-app-banip/po/hi/banip.po +++ b/applications/luci-app-banip/po/hi/banip.po @@ -4,12 +4,42 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" msgstr "" @@ -17,92 +47,101 @@ msgstr "" msgid "Action" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" msgstr "" @@ -112,7 +151,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -140,81 +179,81 @@ msgstr "" msgid "Count SUM" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" msgstr "" @@ -233,31 +272,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." msgstr "" @@ -269,11 +308,15 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" msgstr "" @@ -281,15 +324,15 @@ msgstr "" msgid "Grant access to LuCI app banIP" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "" @@ -297,7 +340,7 @@ msgstr "" msgid "IPSet Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." msgstr "" @@ -306,73 +349,81 @@ msgstr "" msgid "IPSet Report" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" @@ -381,27 +432,39 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" msgstr "" @@ -413,44 +476,61 @@ msgstr "" msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" @@ -458,12 +538,12 @@ msgstr "" msgid "Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "" @@ -471,7 +551,7 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." msgstr "" @@ -479,42 +559,52 @@ msgstr "" msgid "Remove an existing job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" @@ -526,21 +616,21 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "" @@ -548,80 +638,92 @@ msgstr "" msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 msgid "Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" @@ -647,7 +749,7 @@ msgstr "" msgid "The minutes portion (opt., range: 0-59)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -660,9 +762,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -675,18 +777,18 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" msgstr "" @@ -696,11 +798,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "" @@ -714,17 +816,17 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -732,6 +834,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -739,7 +849,7 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." msgstr "" diff --git a/applications/luci-app-banip/po/hu/banip.po b/applications/luci-app-banip/po/hu/banip.po index e1132d20f4..00cfb83c3f 100644 --- a/applications/luci-app-banip/po/hu/banip.po +++ b/applications/luci-app-banip/po/hu/banip.po @@ -10,12 +10,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.0-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" msgstr "" @@ -23,94 +53,103 @@ msgstr "" msgid "Action" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" "További aktiválókésleltetés másodpercben, mielőtt a banIP feldolgozása " "elkezdődik." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "Biztonsági mentés könyvtára" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" msgstr "" @@ -120,7 +159,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -148,81 +187,81 @@ msgstr "" msgid "Count SUM" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "Letöltési segédprogram" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" msgstr "" @@ -241,31 +280,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "Fehérlista szerkesztése" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." msgstr "" @@ -277,11 +316,15 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" msgstr "" @@ -289,15 +332,15 @@ msgstr "" msgid "Grant access to LuCI app banIP" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "IPSet információk" @@ -305,7 +348,7 @@ msgstr "IPSet információk" msgid "IPSet Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." msgstr "" @@ -314,73 +357,81 @@ msgstr "" msgid "IPSet Report" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "Utolsó futás" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" @@ -389,27 +440,39 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" msgstr "" @@ -421,44 +484,61 @@ msgstr "" msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "Áttekintés" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" @@ -466,12 +546,12 @@ msgstr "" msgid "Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "Frissítés" @@ -479,7 +559,7 @@ msgstr "Frissítés" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." msgstr "" @@ -487,42 +567,52 @@ msgstr "" msgid "Remove an existing job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" @@ -534,21 +624,21 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "" @@ -556,80 +646,92 @@ msgstr "" msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 msgid "Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" @@ -655,7 +757,7 @@ msgstr "" msgid "The minutes portion (opt., range: 0-59)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -670,9 +772,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -685,18 +787,18 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" msgstr "" @@ -706,11 +808,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "Aktiváló késleltetése" @@ -724,17 +826,17 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "Részletes hibakeresési naplózás" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -742,6 +844,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -749,7 +859,7 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." msgstr "" diff --git a/applications/luci-app-banip/po/it/banip.po b/applications/luci-app-banip/po/it/banip.po index 2e99fcc521..900d5a9717 100644 --- a/applications/luci-app-banip/po/it/banip.po +++ b/applications/luci-app-banip/po/it/banip.po @@ -1,124 +1,163 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-12-05 11:54+0000\n" -"Last-Translator: Francesco Ognibene <ogibenefra@gmail.com>\n" +"PO-Revision-Date: 2021-05-07 11:32+0000\n" +"Last-Translator: Omar Destefani <omar.destefani@gmail.com>\n" "Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsbanip/it/>\n" "Language: it\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.4-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:127 msgid "Action" -msgstr "" +msgstr "Azione" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "Directory del Backup" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" -msgstr "" +msgstr "Base directory Temporanea" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" -msgstr "" +msgstr "Fonti lista di Blocco" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:22 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:73 msgid "Cancel" -msgstr "" +msgstr "Annulla" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -146,88 +185,88 @@ msgstr "" msgid "Count SUM" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" -msgstr "" +msgstr "Parametri di download" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" -msgstr "" +msgstr "Coda download" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" -msgstr "Utilità di Scaricamento" +msgstr "Utilità di download" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" -msgstr "" +msgstr "Notifica e-mail" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" -msgstr "" +msgstr "Profilo e-mail" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" -msgstr "" +msgstr "Indirizzo e-mail destinatario" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" -msgstr "" +msgstr "Indirizzo e-mail mittente" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" -msgstr "" +msgstr "Oggetto e-mail" #: applications/luci-app-banip/luasrc/controller/banip.lua:9 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:35 msgid "Edit Blacklist" -msgstr "" +msgstr "Modifica blacklist" #: applications/luci-app-banip/luasrc/controller/banip.lua:11 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 @@ -237,33 +276,34 @@ msgstr "" #: applications/luci-app-banip/luasrc/controller/banip.lua:10 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:43 msgid "Edit Whitelist" -msgstr "" +msgstr "Modifica whitelist" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" +"Abilita log di debug verboso in caso di qualsiasi errore di elaborazione." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" -msgstr "" +msgstr "Abilitato" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." msgstr "" @@ -273,13 +313,17 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:18 msgid "Existing job(s)" +msgstr "Processi esistenti" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" -msgstr "" +msgstr "Impostazioni Generali" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" msgstr "" @@ -287,15 +331,15 @@ msgstr "" msgid "Grant access to LuCI app banIP" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "" @@ -303,7 +347,7 @@ msgstr "" msgid "IPSet Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." msgstr "" @@ -312,73 +356,81 @@ msgstr "" msgid "IPSet Report" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" @@ -387,27 +439,39 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" msgstr "" @@ -419,44 +483,61 @@ msgstr "" msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" @@ -464,12 +545,12 @@ msgstr "" msgid "Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "Ricaricare" @@ -477,7 +558,7 @@ msgstr "Ricaricare" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." msgstr "" @@ -485,42 +566,52 @@ msgstr "" msgid "Remove an existing job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" @@ -532,21 +623,21 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "" @@ -554,80 +645,92 @@ msgstr "" msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 msgid "Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" @@ -653,7 +756,7 @@ msgstr "" msgid "The minutes portion (opt., range: 0-59)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -666,9 +769,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -681,18 +784,18 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" msgstr "" @@ -702,11 +805,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "" @@ -720,17 +823,17 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -738,6 +841,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -745,7 +856,7 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." msgstr "" diff --git a/applications/luci-app-banip/po/ja/banip.po b/applications/luci-app-banip/po/ja/banip.po index 181851cc8d..0fb844d208 100644 --- a/applications/luci-app-banip/po/ja/banip.po +++ b/applications/luci-app-banip/po/ja/banip.po @@ -1,124 +1,163 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-12-10 19:29+0000\n" -"Last-Translator: Ryota <21ryotagamer@gmail.com>\n" +"PO-Revision-Date: 2021-02-07 07:33+0000\n" +"Last-Translator: Satoru Yoshida <ramat@ram.ne.jp>\n" "Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsbanip/ja/>\n" "Language: ja\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.4-dev\n" +"X-Generator: Weblate 4.5-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:127 msgid "Action" -msgstr "" +msgstr "アクション" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" -msgstr "" +msgstr "アクティブなデバイス" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" -msgstr "" +msgstr "アクティブなソース" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" +msgstr "アクティブなサブネット" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" -msgstr "" +msgstr "追加設定" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" -msgstr "" +msgstr "Eメールの詳細設定" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" -msgstr "" +msgstr "ログの詳細設定" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" -msgstr "" +msgstr "自動ブラックリスト" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" -msgstr "" +msgstr "自動検出" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" -msgstr "" +msgstr "自動ホワイトリスト" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "バックアップ先 ディレクトリ" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" -msgstr "" +msgstr "ベースとなるテンポラリディレクトリ" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" -msgstr "" +msgstr "ブロックリスト提供元" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:22 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:73 msgid "Cancel" -msgstr "" +msgstr "キャンセル" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -128,101 +167,101 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:124 msgid "Count ACC" -msgstr "" +msgstr "ACC をカウント" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:122 msgid "Count CIDR" -msgstr "" +msgstr "CIDRをカウント" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:121 msgid "Count IP" -msgstr "" +msgstr "IP をカウント" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:123 msgid "Count MAC" -msgstr "" +msgstr "MAC をカウント" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:120 msgid "Count SUM" -msgstr "" +msgstr "SUM をカウント" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" -msgstr "" +msgstr "国" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" -msgstr "" +msgstr "ダウンロードのパラメータ" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" -msgstr "" +msgstr "ダウンロードキュー" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "ダウンロードユーティリティ" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" -msgstr "" +msgstr "Eメールアクション" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" -msgstr "" +msgstr "Eメール通知" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" -msgstr "" +msgstr "Eメールプロファイル" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" -msgstr "" +msgstr "Eメール受信アドレス" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" -msgstr "" +msgstr "Eメール送信者アドレス" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" -msgstr "" +msgstr "Eメールトピック" #: applications/luci-app-banip/luasrc/controller/banip.lua:9 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:35 @@ -239,47 +278,51 @@ msgstr "" msgid "Edit Whitelist" msgstr "ホワイトリストの編集" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." -msgstr "" +msgstr "banIP サービスを有効にする。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." -msgstr "" +msgstr "エラーが発生した際に詳細なデバッグロギングを有効にします。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" -msgstr "" +msgstr "有効" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." -msgstr "" +msgstr "banIP で IPv4 サポートを有効にする。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." -msgstr "" +msgstr "banIP で IPv6 サポートを有効にする。" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:125 msgid "Entry Details" -msgstr "" +msgstr "エントリ詳細" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:18 msgid "Existing job(s)" +msgstr "既存のジョブ" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" -msgstr "" +msgstr "一般設定" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" msgstr "" @@ -287,15 +330,15 @@ msgstr "" msgid "Grant access to LuCI app banIP" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" -msgstr "" +msgstr "高い優先度" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" -msgstr "" +msgstr "最高の優先度" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "IPSet 情報" @@ -303,7 +346,7 @@ msgstr "IPSet 情報" msgid "IPSet Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." msgstr "" @@ -312,139 +355,176 @@ msgstr "" msgid "IPSet Report" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" -msgstr "" +msgstr "IPSet 詳細" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" -msgstr "" +msgstr "IPv4 サポート" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" -msgstr "" +msgstr "IPv6 サポート" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" -msgstr "" +msgstr "情報" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "最終実行" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" -msgstr "" +msgstr "最低の優先度" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" -msgstr "" +msgstr "低い優先度" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" -msgstr "" +msgstr "削除する行番号" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." +msgstr "サポートされ、かつ設定済のダウンロード ユーティリティの一覧です。" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" -msgstr "" +msgstr "ログ制限" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" -msgstr "" +msgstr "ログモニター" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" #: applications/luci-app-banip/luasrc/controller/banip.lua:12 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:59 msgid "Log View" -msgstr "" +msgstr "ログビュー" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" -msgstr "" +msgstr "名前" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" -msgstr "" +msgstr "ネットワークインターフェース" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:88 msgid "No Query results!" -msgstr "" +msgstr "検索結果がありません!" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/logread.js:21 msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" -msgstr "" +msgstr "通常の優先度 (デフォルト)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" -msgstr "" +msgstr "CIDR エントリ 数" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" -msgstr "" +msgstr "IP エントリ 数" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" -msgstr "" +msgstr "MAC エントリ 数" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" -msgstr "" +msgstr "アクセスされたエントリ数" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" +msgstr "全エントリ数" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." msgstr "" #: applications/luci-app-banip/luasrc/controller/banip.lua:7 @@ -452,75 +532,85 @@ msgstr "" msgid "Overview" msgstr "概要" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:96 msgid "Query" -msgstr "" +msgstr "検索" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "リフレッシュ" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:15 msgid "Refresh Timer" -msgstr "" +msgstr "リフレッシュタイマー" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." -msgstr "" +msgstr "タイマーをリフレッシュ..." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:62 msgid "Remove an existing job" -msgstr "" +msgstr "既存のジョブを削除" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" -msgstr "" +msgstr "レポート ディレクトリ" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" +msgstr "再起動" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" -msgstr "" +msgstr "結果" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" -msgstr "" +msgstr "実行フラグ" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" -msgstr "" +msgstr "実行情報" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" @@ -532,128 +622,140 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" -msgstr "" +msgstr "サービス優先度" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 -msgid "Settings" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 +msgid "Settings" +msgstr "設定" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." -msgstr "" +msgstr "選択したダウンロードユーティリティーの特別な設定オプション。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" -msgstr "" +msgstr "起動時トリガーインターフェース" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" -msgstr "" +msgstr "ステータス / バージョン" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" -msgstr "" +msgstr "一時停止" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:87 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:96 msgid "The Refresh Timer could not been updated." -msgstr "" +msgstr "リフレッシュタイマーを更新できませんでした。" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:89 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:98 msgid "The Refresh Timer has been updated." -msgstr "" +msgstr "リフレッシュタイマーが更新されました。" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:57 msgid "The day of the week (opt., values: 1-7 possibly sep. by , or -)" -msgstr "" +msgstr "曜日(オプション、1-7の値。, または - で区切る)" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:47 msgid "The hours portition (req., range: 0-23)" -msgstr "" +msgstr "時(必須、0-23の値)" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:52 msgid "The minutes portion (opt., range: 0-59)" -msgstr "" +msgstr "分(オプション、0-59の値)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -666,9 +768,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -681,20 +783,20 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" -msgstr "" +msgstr "タイムスタンプ" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:16 msgid "" @@ -702,35 +804,35 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "トリガ遅延" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:119 msgid "Type" -msgstr "" +msgstr "タイプ" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:17 msgid "Unable to save changes: %s" -msgstr "" +msgstr "変更を保存できませんでした: %s" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "詳細なデバッグ ログ" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -738,6 +840,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -745,9 +855,9 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." -msgstr "" +msgstr "ホワイトリスト..." #: applications/luci-app-banip/luasrc/controller/banip.lua:6 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:3 @@ -756,7 +866,7 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:41 msgid "banIP action" -msgstr "" +msgstr "banIP アクション" #~ msgid "ASN Overview" #~ msgstr "ASNの概要" diff --git a/applications/luci-app-banip/po/ko/banip.po b/applications/luci-app-banip/po/ko/banip.po index 532c6665c3..156f8f08c2 100644 --- a/applications/luci-app-banip/po/ko/banip.po +++ b/applications/luci-app-banip/po/ko/banip.po @@ -1,21 +1,51 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-01-18 19:24+0000\n" -"Last-Translator: ANTEGRAL <antegral@antegral.net>\n" +"PO-Revision-Date: 2021-03-21 14:31+0000\n" +"Last-Translator: asdf1234 <cydyellowgreen@gmail.com>\n" "Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsbanip/ko/>\n" "Language: ko\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.5-dev\n" +"X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" msgstr "" @@ -23,93 +53,102 @@ msgstr "" msgid "Action" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 #, fuzzy msgid "Backup Directory" msgstr "백업 경로" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" msgstr "" @@ -119,7 +158,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -147,81 +186,81 @@ msgstr "" msgid "Count SUM" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" msgstr "" @@ -240,31 +279,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" -msgstr "" +msgstr "활성화" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." msgstr "" @@ -276,11 +315,15 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 -msgid "General Settings" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 +msgid "General Settings" +msgstr "기본 설정" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" msgstr "" @@ -288,15 +331,15 @@ msgstr "" msgid "Grant access to LuCI app banIP" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "" @@ -304,7 +347,7 @@ msgstr "" msgid "IPSet Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." msgstr "" @@ -313,73 +356,81 @@ msgstr "" msgid "IPSet Report" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" @@ -388,27 +439,39 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" msgstr "" @@ -420,44 +483,61 @@ msgstr "" msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" @@ -465,12 +545,12 @@ msgstr "" msgid "Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "" @@ -478,7 +558,7 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." msgstr "" @@ -486,42 +566,52 @@ msgstr "" msgid "Remove an existing job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" @@ -533,21 +623,21 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "" @@ -555,80 +645,92 @@ msgstr "" msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 msgid "Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" @@ -654,7 +756,7 @@ msgstr "" msgid "The minutes portion (opt., range: 0-59)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -667,9 +769,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -682,18 +784,18 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" msgstr "" @@ -703,11 +805,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "" @@ -721,17 +823,17 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -739,6 +841,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -746,7 +856,7 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." msgstr "" diff --git a/applications/luci-app-banip/po/mr/banip.po b/applications/luci-app-banip/po/mr/banip.po index f8b27d8b67..5599b82147 100644 --- a/applications/luci-app-banip/po/mr/banip.po +++ b/applications/luci-app-banip/po/mr/banip.po @@ -10,12 +10,42 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" msgstr "" @@ -23,92 +53,101 @@ msgstr "" msgid "Action" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" msgstr "" @@ -118,7 +157,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -146,81 +185,81 @@ msgstr "" msgid "Count SUM" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" msgstr "" @@ -239,31 +278,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." msgstr "" @@ -275,11 +314,15 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" msgstr "" @@ -287,15 +330,15 @@ msgstr "" msgid "Grant access to LuCI app banIP" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "" @@ -303,7 +346,7 @@ msgstr "" msgid "IPSet Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." msgstr "" @@ -312,73 +355,81 @@ msgstr "" msgid "IPSet Report" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" @@ -387,27 +438,39 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" msgstr "" @@ -419,44 +482,61 @@ msgstr "" msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "आढावा" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" @@ -464,12 +544,12 @@ msgstr "" msgid "Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "" @@ -477,7 +557,7 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." msgstr "" @@ -485,42 +565,52 @@ msgstr "" msgid "Remove an existing job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" @@ -532,21 +622,21 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "" @@ -554,80 +644,92 @@ msgstr "" msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 msgid "Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" @@ -653,7 +755,7 @@ msgstr "" msgid "The minutes portion (opt., range: 0-59)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -666,9 +768,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -681,18 +783,18 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" msgstr "" @@ -702,11 +804,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "" @@ -720,17 +822,17 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -738,6 +840,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -745,7 +855,7 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." msgstr "" diff --git a/applications/luci-app-banip/po/ms/banip.po b/applications/luci-app-banip/po/ms/banip.po index b4bf75e682..963ef70dd9 100644 --- a/applications/luci-app-banip/po/ms/banip.po +++ b/applications/luci-app-banip/po/ms/banip.po @@ -10,12 +10,42 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.10-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" msgstr "" @@ -23,92 +53,101 @@ msgstr "" msgid "Action" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "Direktori Sandaran" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" msgstr "" @@ -118,7 +157,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -146,81 +185,81 @@ msgstr "" msgid "Count SUM" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" msgstr "" @@ -239,31 +278,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." msgstr "" @@ -275,11 +314,15 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" msgstr "" @@ -287,15 +330,15 @@ msgstr "" msgid "Grant access to LuCI app banIP" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "" @@ -303,7 +346,7 @@ msgstr "" msgid "IPSet Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." msgstr "" @@ -312,73 +355,81 @@ msgstr "" msgid "IPSet Report" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" @@ -387,27 +438,39 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" msgstr "" @@ -419,44 +482,61 @@ msgstr "" msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" @@ -464,12 +544,12 @@ msgstr "" msgid "Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "" @@ -477,7 +557,7 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." msgstr "" @@ -485,42 +565,52 @@ msgstr "" msgid "Remove an existing job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" @@ -532,21 +622,21 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "" @@ -554,80 +644,92 @@ msgstr "" msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 msgid "Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" @@ -653,7 +755,7 @@ msgstr "" msgid "The minutes portion (opt., range: 0-59)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -666,9 +768,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -681,18 +783,18 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" msgstr "" @@ -702,11 +804,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "" @@ -720,17 +822,17 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -738,6 +840,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -745,7 +855,7 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." msgstr "" diff --git a/applications/luci-app-banip/po/nb_NO/banip.po b/applications/luci-app-banip/po/nb_NO/banip.po index 5d65e3edf1..bafbaf82c0 100644 --- a/applications/luci-app-banip/po/nb_NO/banip.po +++ b/applications/luci-app-banip/po/nb_NO/banip.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-12-13 05:29+0000\n" +"PO-Revision-Date: 2021-03-27 15:30+0000\n" "Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n" "Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsbanip/nb_NO/>\n" @@ -8,14 +8,44 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.4-dev\n" +"X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" msgstr "" @@ -23,92 +53,101 @@ msgstr "" msgid "Action" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" -msgstr "" +msgstr "Aktive kilder" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" -msgstr "" +msgstr "Ytterligere innstillinger" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" -msgstr "" +msgstr "Avanserte e-postinnstillinger" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "Sikkerhetskopimappe" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" msgstr "" @@ -116,9 +155,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:73 msgid "Cancel" -msgstr "" +msgstr "Avbryt" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -146,83 +185,83 @@ msgstr "" msgid "Count SUM" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" -msgstr "" +msgstr "Nedlastingsparametre" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" -msgstr "" +msgstr "Nedlastingskø" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "Nedlastingsverktøy" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" -msgstr "" +msgstr "E-postprofil" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" -msgstr "" +msgstr "E-postsenderadresse" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" -msgstr "" +msgstr "E-postemne" #: applications/luci-app-banip/luasrc/controller/banip.lua:9 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:35 @@ -239,31 +278,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "Rediger hvitliste" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" -msgstr "" +msgstr "Påskrudd" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." msgstr "" @@ -273,13 +312,17 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:18 msgid "Existing job(s)" +msgstr "Eksisterende jobb(er)" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" -msgstr "" +msgstr "Generelle innstillinger" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" msgstr "" @@ -287,15 +330,15 @@ msgstr "" msgid "Grant access to LuCI app banIP" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "" @@ -303,7 +346,7 @@ msgstr "" msgid "IPSet Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." msgstr "" @@ -312,102 +355,122 @@ msgstr "" msgid "IPSet Report" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" -msgstr "" +msgstr "IPv6-støtte" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" -msgstr "" +msgstr "Info" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "Sist kjørt" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" -msgstr "" +msgstr "Linjenummer å fjerne" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" #: applications/luci-app-banip/luasrc/controller/banip.lua:12 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:59 msgid "Log View" -msgstr "" +msgstr "Loggvisning" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" msgstr "" @@ -419,108 +482,136 @@ msgstr "" msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "Oversikt" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:96 msgid "Query" -msgstr "" +msgstr "Spørring" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" -msgstr "" +msgstr "Gjenoppfrisk" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:15 msgid "Refresh Timer" -msgstr "" +msgstr "Gjenoppfrisk tidsur" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." -msgstr "" +msgstr "Gjenoppfrisk tidsur …" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:62 msgid "Remove an existing job" -msgstr "" +msgstr "Fjern en eksisterende jobb" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" -msgstr "" +msgstr "Rapportmappe" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" +msgstr "Omstart" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" -msgstr "" +msgstr "Resultat" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 +#, fuzzy msgid "Run Flags" -msgstr "" +msgstr "Kjøringsflagg" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" @@ -532,21 +623,21 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "" @@ -554,80 +645,92 @@ msgstr "" msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 -msgid "Settings" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 +msgid "Settings" +msgstr "Innstillinger" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" -msgstr "" +msgstr "Status/versjon" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" @@ -653,7 +756,7 @@ msgstr "" msgid "The minutes portion (opt., range: 0-59)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -666,9 +769,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -681,18 +784,18 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" msgstr "" @@ -702,13 +805,13 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" -msgstr "" +msgstr "Utløserforsinkelse" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:119 msgid "Type" @@ -718,19 +821,19 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:17 msgid "Unable to save changes: %s" -msgstr "" +msgstr "Kunne ikke lagre endringer: %s" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -738,6 +841,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -745,9 +856,9 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." -msgstr "" +msgstr "Hvitliste …" #: applications/luci-app-banip/luasrc/controller/banip.lua:6 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:3 diff --git a/applications/luci-app-banip/po/nl/banip.po b/applications/luci-app-banip/po/nl/banip.po new file mode 100644 index 0000000000..be62622063 --- /dev/null +++ b/applications/luci-app-banip/po/nl/banip.po @@ -0,0 +1,871 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-05-02 20:06+0000\n" +"Last-Translator: Hai Ho <hoanghai.ho@gmail.com>\n" +"Language-Team: Dutch <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsbanip/nl/>\n" +"Language: nl\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.7-dev\n" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 +msgid "-m limit --limit 2/sec (default)" +msgstr "-m-limiet --limiet 2/sec (standaard)" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "1 uur" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "12 uren" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "24 uur" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "30 minuten" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "6 uur" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 +msgid "ASNs" +msgstr "ASN's" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:127 +msgid "Action" +msgstr "Acties" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +msgid "Active Devices" +msgstr "Actieve apparaten" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 +msgid "Active Interfaces" +msgstr "Actieve interfaces" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 +msgid "Active Logterms" +msgstr "Actieve Logtermen" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 +msgid "Active Sources" +msgstr "Actieve bronnen" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 +msgid "Active Subnets" +msgstr "Actieve subnetten" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." +msgstr "" +"Voeg extra, niet-BanIP-gerelateerde IPSets toe, bv. voor rapportage en " +"query's." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 +msgid "Add this IP/CIDR to your local whitelist." +msgstr "Voeg dit IP/CIDR toe aan uw lokale whitelist." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 +msgid "Additional Settings" +msgstr "Aanvullende instellingen" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +msgid "Additional trigger delay in seconds before banIP processing begins." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 +msgid "Advanced Chain Settings" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 +msgid "Advanced E-Mail Settings" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +msgid "Advanced Log Settings" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 +msgid "Auto Blacklist" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +msgid "Auto Detection" +msgstr "Autodetectie" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 +msgid "Auto Whitelist" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 +msgid "" +"Automatically transfers suspicious IPs from the log to the banIP blacklist " +"during runtime." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 +msgid "" +"Automatically transfers uplink IPs to the banIP whitelist during runtime." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 +msgid "Backup Directory" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +msgid "Base Temp Directory" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +msgid "Base Temp Directory used for all banIP related runtime operations." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 +msgid "" +"Blacklist changes have been saved. Refresh your banIP lists that changes " +"take effect." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 +msgid "Blocklist Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:22 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:73 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:73 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 +msgid "" +"Configuration of the banIP package to block ip adresses/subnets via IPSet. " +"For further information <a href=\"https://github.com/openwrt/packages/blob/" +"master/net/banip/files/README.md\" target=\"_blank\" rel=\"noreferrer " +"noopener\" >check the online documentation</a>" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:124 +msgid "Count ACC" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:122 +msgid "Count CIDR" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:121 +msgid "Count IP" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:123 +msgid "Count MAC" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:120 +msgid "Count SUM" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 +msgid "Countries" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 +msgid "DST IPSet Type" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 +msgid "DST Log Options" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 +msgid "DST Target" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 +msgid "Default chain used by banIP is 'forwarding_lan_rule'" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 +msgid "Default chain used by banIP is 'forwarding_wan_rule'" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 +msgid "Default chain used by banIP is 'input_lan_rule'" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 +msgid "Default chain used by banIP is 'input_wan_rule'" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +msgid "" +"Detect relevant network interfaces, devices, subnets and protocols " +"automatically." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 +msgid "Download Parameters" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +msgid "Download Queue" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 +msgid "Download Utility" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 +msgid "E-Mail Actions" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +msgid "E-Mail Notification" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 +msgid "E-Mail Profile" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 +msgid "E-Mail Receiver Address" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 +msgid "E-Mail Sender Address" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 +msgid "E-Mail Topic" +msgstr "" + +#: applications/luci-app-banip/luasrc/controller/banip.lua:9 +#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:35 +msgid "Edit Blacklist" +msgstr "" + +#: applications/luci-app-banip/luasrc/controller/banip.lua:11 +#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 +msgid "Edit Maclist" +msgstr "" + +#: applications/luci-app-banip/luasrc/controller/banip.lua:10 +#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:43 +msgid "Edit Whitelist" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 +msgid "Enable DST logging" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 +msgid "Enable SRC logging" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 +msgid "Enable the banIP service." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 +msgid "Enable verbose debug logging in case of any processing errors." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 +msgid "Enables IPv4 support in banIP." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +msgid "Enables IPv6 support in banIP." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:125 +msgid "Entry Details" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:18 +msgid "Existing job(s)" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +msgid "Global IPSet Type" +msgstr "" + +#: applications/luci-app-banip/root/usr/share/rpcd/acl.d/luci-app-banip.json:3 +msgid "Grant access to LuCI app banIP" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 +msgid "High Priority" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 +msgid "Highest Priority" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 +msgid "IPSet Information" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:45 +msgid "IPSet Query" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 +msgid "IPSet Query..." +msgstr "" + +#: applications/luci-app-banip/luasrc/controller/banip.lua:8 +#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:27 +msgid "IPSet Report" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 +msgid "IPSet details" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 +msgid "IPv4 Support" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 +msgid "IPv6 Support" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 +msgid "Information" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 +msgid "LAN Forward" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 +msgid "LAN Input" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 +msgid "Last Run" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 +msgid "Least Priority" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 +msgid "Less Priority" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 +msgid "Limit E-Mail trigger to certain banIP actions." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 +msgid "Limit the log monitor to certain log terms." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 +msgid "Line number to remove" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 +msgid "List of available network interfaces to trigger the banIP start." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 +msgid "List of supported and fully pre-configured download utilities." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 +msgid "Log Limit" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 +msgid "Log Monitor" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 +msgid "Log Terms" +msgstr "" + +#: applications/luci-app-banip/luasrc/controller/banip.lua:12 +#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:59 +msgid "Log View" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 +msgid "Log suspicious incoming packets - usually dropped." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 +msgid "" +"Log suspicious outgoing packets - usually rejected. Logging such packets may " +"cause an increase in latency due to it requiring additional system resources." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 +msgid "" +"Maclist changes have been saved. Refresh your banIP lists that changes take " +"effect." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 +msgid "Name" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 +msgid "Network Interfaces" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:88 +msgid "No Query results!" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/logread.js:21 +msgid "No banIP related logs yet!" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 +msgid "Normal Priority (default)" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 +msgid "Number of CIDR entries" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 +msgid "Number of IP entries" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 +msgid "Number of MAC entries" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 +msgid "Number of accessed entries" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 +msgid "Number of all IPSets" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 +msgid "Number of all entries" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/luasrc/controller/banip.lua:7 +#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 +msgid "Overview" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 +msgid "Parse only the last stated number of log entries for suspicious events." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 +msgid "Profile used by 'msmtp' for banIP notification E-Mails." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:96 +msgid "Query" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 +msgid "Receiver address for banIP notification e-mails." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 +msgid "Refresh" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:15 +msgid "Refresh Timer" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 +msgid "Refresh Timer..." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:62 +msgid "Remove an existing job" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +msgid "Report Directory" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +msgid "Restart" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 +msgid "Result" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 +msgid "Run Flags" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 +msgid "Run Information" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 +msgid "SRC IPSet Type" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 +msgid "SRC Log Options" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 +msgid "SRC Target" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 +msgid "SRC+DST IPSet Type" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 +msgid "Save" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:46 +msgid "" +"Search the active banIP-related IPSets for a specific IP, CIDR or MAC " +"address." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 +msgid "Select the relevant network interfaces manually." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +msgid "" +"Send banIP related notification e-mails. This needs the installation and " +"setup of the additional 'msmtp' package." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 +msgid "Sender address for banIP notification E-Mails." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 +msgid "Service Priority" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 +msgid "Set a new banIP job" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 +msgid "Set individual DST type per IPset to block only outgoing packets." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 +msgid "Set individual SRC type per IPset to block only incoming packets." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 +msgid "" +"Set individual SRC+DST type per IPset to block incoming and outgoing packets." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 +msgid "Set special DST log options, e.g. to set a limit rate." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 +msgid "Set special SRC log options, e.g. to set a limit rate." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 +msgid "Set the firewall target for all DST related rules." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 +msgid "Set the firewall target for all SRC related rules." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +msgid "" +"Set the global IPset type default, to block incoming (SRC) and/or outgoing " +"(DST) packets." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 +msgid "Settings" +msgstr "Instellingen" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +msgid "Size of the download queue for download processing in parallel." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +msgid "Sources (Info)" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 +msgid "Special config options for the selected download utility." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 +msgid "" +"Starts a small log monitor in the background to block suspicious SSH/LuCI " +"login attempts." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 +msgid "Startup Trigger Interface" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 +msgid "Status / Version" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 +msgid "Suspend" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 +msgid "Target directory for IPSet related report files." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 +msgid "Target directory for compressed source list backups." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:87 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:96 +msgid "The Refresh Timer could not been updated." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:89 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:98 +msgid "The Refresh Timer has been updated." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:57 +msgid "The day of the week (opt., values: 1-7 possibly sep. by , or -)" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:47 +msgid "The hours portition (req., range: 0-23)" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:52 +msgid "The minutes portion (opt., range: 0-59)" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 +msgid "" +"The selected priority will be used for banIP background processing. This " +"change requires a full banIP service restart to take effect." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/logread.js:28 +msgid "The syslog output, pre-filtered for banIP related messages only." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 +msgid "" +"This is the local banIP blacklist to always-deny certain IP/CIDR addresses." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 +msgid "" +"This is the local banIP maclist to always-allow certain MAC addresses.<br /> " +"<em><b>Please note:</b></em> add only one MAC address per line. Comments " +"introduced with '#' are allowed - domains, wildcards and regex are not." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 +msgid "" +"This is the local banIP whitelist to always allow certain IP/CIDR addresses." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 +msgid "" +"This tab shows the last generated IPSet Report, press the 'Refresh' button " +"to get a current one." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 +msgid "Timestamp" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:16 +msgid "" +"To keep your banIP lists up-to-date, you should setup an automatic update " +"job for these lists." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 +msgid "Topic for banIP notification E-Mails." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +msgid "Trigger Delay" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:119 +msgid "Type" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:17 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:17 +msgid "Unable to save changes: %s" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 +msgid "Verbose Debug Logging" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 +msgid "WAN Forward" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 +msgid "WAN Input" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:11 +msgid "Whitelist IP/CIDR" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 +msgid "" +"Whitelist changes have been saved. Refresh your banIP lists that changes " +"take effect." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 +msgid "Whitelist..." +msgstr "" + +#: applications/luci-app-banip/luasrc/controller/banip.lua:6 +#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:3 +msgid "banIP" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:41 +msgid "banIP action" +msgstr "" diff --git a/applications/luci-app-banip/po/pl/banip.po b/applications/luci-app-banip/po/pl/banip.po index 92e7435d8f..9832685a6b 100644 --- a/applications/luci-app-banip/po/pl/banip.po +++ b/applications/luci-app-banip/po/pl/banip.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-08-18 20:32+0000\n" +"PO-Revision-Date: 2021-05-07 11:32+0000\n" "Last-Translator: Marcin Net <marcin.net@linux.pl>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsbanip/pl/>\n" @@ -9,223 +9,277 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" -msgstr "" +msgstr "-m limit --limit 2/sec (domyślnie)" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "1 godzina" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "12 1 godzin" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "24 godziny" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "30 minut" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "6 godzin" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" -msgstr "" +msgstr "ASNs" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:127 msgid "Action" -msgstr "" +msgstr "Akcja" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" -msgstr "" +msgstr "Aktywne urządzenia" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" -msgstr "" +msgstr "Aktywne interfejsy" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" -msgstr "" +msgstr "Aktywne rejestratory" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" -msgstr "" +msgstr "Aktywne źródła" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" +msgstr "Aktywne podsieci" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." msgstr "" +"Dodaj dodatkowe zestawy IP związane z non-banIP, np. do raportowania i " +"zapytań." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." -msgstr "" +msgstr "Dodaj ten adres IP/CIDR do lokalnej białej listy." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" -msgstr "" +msgstr "Dodatkowe ustawienia" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" "Dodatkowe opóźnienie wyzwalania w sekundach przed rozpoczęciem przetwarzania " "banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" -msgstr "" +msgstr "Zaawansowane ustawienia łańcucha" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" -msgstr "" +msgstr "Zaawansowane ustawienia e-mail" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" -msgstr "" +msgstr "Zaawansowane ustawienia dziennika" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" -msgstr "" +msgstr "Automatyczna czarna lista" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" -msgstr "" +msgstr "Automatyczne wykrywanie" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" -msgstr "" +msgstr "Automatyczna biała lista" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" +"Automatycznie przenosi podejrzane IP z logu na czarną listę banIP w czasie " +"działania programu." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" +"Automatycznie przenosi adresy IP uplink do białej listy banIP podczas pracy." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "Katalog kopii zapasowej" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" -msgstr "" +msgstr "Podstawowy katalog tymczasowy" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +"Bazowy katalog Temp używany dla wszystkich operacji runtime związanych z " +"banIP." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "Limit czasu czarnej listy" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" +"Zmiany na czarnej liście zostały zapisane. Odśwież swoje listy banIP, aby " +"zmiany zaczęły obowiązywać." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" -msgstr "" +msgstr "Źródła list" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:22 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:73 msgid "Cancel" -msgstr "" +msgstr "Anuluj" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" "master/net/banip/files/README.md\" target=\"_blank\" rel=\"noreferrer " "noopener\" >check the online documentation</a>" msgstr "" +"Konfiguracja pakietu banIP do blokowania adresów ip/podsieci za " +"pośrednictwem IPSet. Więcej informacji <a href=\"https://github.com/openwrt/" +"packages/blob/master/net/banip/files/README.md\" target=\"_blank\" rel=" +"\"noreferrer noopener\" > można znaleźć w dokumentacji online</a>" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:124 msgid "Count ACC" -msgstr "" +msgstr "Policz ACC" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:122 msgid "Count CIDR" -msgstr "" +msgstr "Policz CIDR" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:121 msgid "Count IP" -msgstr "" +msgstr "Policz IP" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:123 msgid "Count MAC" -msgstr "" +msgstr "Policz MAC" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:120 msgid "Count SUM" -msgstr "" +msgstr "Policz SUM" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" -msgstr "" +msgstr "Kraje" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" -msgstr "" +msgstr "Typ zestawu DST IPSet" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" -msgstr "" +msgstr "Opcje dziennika DST" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" -msgstr "" +msgstr "Cel DST" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" -msgstr "" +msgstr "Domyślny łańcuch używany przez banIP 'forwarding_lan_rule'" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" -msgstr "" +msgstr "Domyślny łańcuch używany przez banIP 'forwarding_wan_rule'" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" -msgstr "" +msgstr "Domyślny łańcuch używany przez banIP 'input_lan_rule'" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" -msgstr "" +msgstr "Domyślny łańcuch używany przez banIP 'input_wan_rule'" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" +"Automatyczne wykrywanie odpowiednich interfejsów sieciowych, urządzeń, " +"podsieci i protokołów." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" -msgstr "" +msgstr "Parametry pobierania" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" -msgstr "" +msgstr "Kolejka pobierania" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "Narzędzie pobierania" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" -msgstr "" +msgstr "Akcje poczty e-mail" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" -msgstr "" +msgstr "Powiadomienie e-mail" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" -msgstr "" +msgstr "Profil e-mail" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" -msgstr "" +msgstr "Adres e-mail odbiorcy" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" -msgstr "" +msgstr "Adres e-mail nadawcy" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" -msgstr "" +msgstr "Temat e-mail" #: applications/luci-app-banip/luasrc/controller/banip.lua:9 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:35 @@ -235,294 +289,364 @@ msgstr "Czarna lista" #: applications/luci-app-banip/luasrc/controller/banip.lua:11 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 msgid "Edit Maclist" -msgstr "" +msgstr "Edytuj listę Mac" #: applications/luci-app-banip/luasrc/controller/banip.lua:10 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:43 msgid "Edit Whitelist" msgstr "Biała lista" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" -msgstr "" +msgstr "Włącz logowanie DST" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" -msgstr "" +msgstr "Włącz logowanie SRC" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." -msgstr "" +msgstr "Włącz usługę BanIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" +"Włącz rejestrowanie debugowania w przypadku wystąpienia błędów w " +"przetwarzaniu." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" -msgstr "" +msgstr "Włączone" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." -msgstr "" +msgstr "Włącza obsługę IPv4 w banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." -msgstr "" +msgstr "Włącza obsługę IPv6 w banIP." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:125 msgid "Entry Details" -msgstr "" +msgstr "Szczegóły wpisu" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:18 msgid "Existing job(s)" -msgstr "" +msgstr "Istniejące zadania" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" +msgstr "Dodatkowe źródła" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" -msgstr "" +msgstr "Ustawienia główne" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" -msgstr "" +msgstr "Typ globalnego zestawu IPSet" #: applications/luci-app-banip/root/usr/share/rpcd/acl.d/luci-app-banip.json:3 msgid "Grant access to LuCI app banIP" -msgstr "" +msgstr "Udziel dostępu LuCI do aplikacji banIP" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" -msgstr "" +msgstr "Wysoki priorytet" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" -msgstr "" +msgstr "Najwyższy priorytet" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "Informacje IPSet" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:45 msgid "IPSet Query" -msgstr "" +msgstr "Zapytanie IPSet" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." -msgstr "" +msgstr "Zapytanie IPSet ..." #: applications/luci-app-banip/luasrc/controller/banip.lua:8 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:27 msgid "IPSet Report" -msgstr "" +msgstr "Raport IPSet" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" -msgstr "" +msgstr "Szczegóły IPSet" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" -msgstr "" +msgstr "Obsługa IPv4" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" -msgstr "" +msgstr "Obsługa IPv6" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" -msgstr "" +msgstr "Informacje" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" -msgstr "" +msgstr "Przekazywanie sieci LAN" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" -msgstr "" +msgstr "Wejście LAN" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "Ostatnie uruchomienie" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" -msgstr "" +msgstr "Najniższy priorytet" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" -msgstr "" +msgstr "Mniejszy priorytet" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." -msgstr "" +msgstr "Ogranicz wyzwalacz wiadomości e-mail do niektórych działań banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." -msgstr "" +msgstr "Ogranicz monitor dziennika do określonych warunków dziennika." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "Ogranicz wybór do niektórych źródeł lokalnych." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" -msgstr "" +msgstr "Numer wiersza do usunięcia" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 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:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" +"Lista obsługiwanych i wstępnie skonfigurowanych narzędzi do pobierania." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "Źródła lokalne" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" -msgstr "" +msgstr "Limit dziennika" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" -msgstr "" +msgstr "Monitor dziennika" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" -msgstr "" +msgstr "Warunki dziennika" #: applications/luci-app-banip/luasrc/controller/banip.lua:12 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:59 msgid "Log View" -msgstr "" +msgstr "Widok dziennika" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." -msgstr "" +msgstr "Rejestruj podejrzane pakiety przychodzące - zwykle odrzucane." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +"Rejestrowanie podejrzanych pakietów wychodzących — zwykle odrzucane. " +"Rejestrowanie takich pakietów może spowodować wzrost opóźnienia ze względu " +"na to, że wymaga dodatkowych zasobów systemowych." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "Liczba dzienników LuCI" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "Limit czasu listy Mac" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +"Zmiany na Maclistach zostały zapisane. Odśwież swoje listy banIP, aby zmiany " +"zaczęły obowiązywać." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "Liczba dzienników NGINX" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" -msgstr "" +msgstr "Nazwa" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" -msgstr "" +msgstr "Interfejsy sieciowe" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:88 msgid "No Query results!" -msgstr "" +msgstr "Brak wyników zapytania!" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/logread.js:21 msgid "No banIP related logs yet!" -msgstr "" +msgstr "Brak dzienników związanych z banIP!" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" -msgstr "" +msgstr "Normalny priorytet (domyślny)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" -msgstr "" +msgstr "Liczba wpisów CIDR" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" -msgstr "" +msgstr "Liczba wpisów IP" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" -msgstr "" +msgstr "Liczba wpisów MAC" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" -msgstr "" +msgstr "Liczba wpisów, do które uzyskały dostęp" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" -msgstr "" +msgstr "Liczba wszystkich zestawów IP" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" +msgstr "Liczba wszystkich wpisów" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" +"Liczba nieudanych powtórzeń logowania LuCI z tego samego ip w logu przed " +"zbanowaniem." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" +"Liczba nieudanych żądań nginx z tego samego ip w logu przed zbanowaniem." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." msgstr "" +"Liczba nieudanych powtórzeń logowania ssh na to samo ip w logu przed " +"zbanowaniem." #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "Przegląd" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" +"Analizuj tylko ostatnią podaną liczbę wpisów w dzienniku w poszukiwaniu " +"podejrzanych zdarzeń." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" +"Profil używany przez \"msmtp\" dla wiadomości e-mail z powiadomieniem BanIP." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:96 msgid "Query" -msgstr "" +msgstr "Zapytanie" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." -msgstr "" +msgstr "Adres odbiorcy wiadomości e-mail z powiadomieniem BanIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "Odśwież" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:15 msgid "Refresh Timer" -msgstr "" +msgstr "Zaktualizuj listy automatycznie" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." -msgstr "" +msgstr "Harmonogram..." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:62 msgid "Remove an existing job" -msgstr "" +msgstr "Usuń istniejące zadanie" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" -msgstr "" +msgstr "Katalog raportów" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" +msgstr "Restartuj" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." msgstr "" +"Ogranicz dostęp do Internetu z/do niewielkiej liczby bezpiecznych stron " +"internetowych/adresów IP i zablokuj dostęp z/do reszty Internetu." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" -msgstr "" +msgstr "Wynik" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" -msgstr "" +msgstr "Uruchomione flagi" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" -msgstr "" +msgstr "Uruchom informacje" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" -msgstr "" +msgstr "Typ zestawu IPSet SRC" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" -msgstr "" +msgstr "Opcje dziennika SRC" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" -msgstr "" +msgstr "Cel SRC" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" -msgstr "" +msgstr "Typ zestawu IP SRC+DST" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "Liczba dzienników SSH" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 @@ -534,133 +658,162 @@ msgid "" "Search the active banIP-related IPSets for a specific IP, CIDR or MAC " "address." msgstr "" +"Przeszukaj aktywne zestawy IPSets powiązane z banIP pod kątem określonego " +"adresu IP, CIDR lub MAC." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." -msgstr "" +msgstr "Ręcznie wybierz odpowiednie interfejsy sieciowe." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" +"Wyślij wiadomości e-mail z powiadomieniami związanymi z banIP. Wymaga to " +"instalacji i konfiguracji dodatkowego pakietu 'msmtp'." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." -msgstr "" +msgstr "Adres nadawcy wiadomości e-mail z powiadomieniem BanIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" -msgstr "" +msgstr "Priorytet usługi" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "Set a new banIP job" -msgstr "" +msgstr "Ustaw nowe zadanie BanIP" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" +"Ustaw indywidualny typ DST dla każdego zestawu IP, aby blokować tylko " +"pakiety wychodzące." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" +"Ustaw indywidualny typ SRC dla każdego zestawu IP, aby blokować tylko " +"pakiety przychodzące." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" +"Ustaw indywidualny typ SRC+DST dla każdego zestawu IP, aby blokować " +"przychodzące i wychodzące pakiety." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." -msgstr "" +msgstr "Ustaw specjalne opcje dziennika DST, np. aby ustawić limit." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." -msgstr "" +msgstr "Ustaw specjalne opcje logów SRC, np. aby ustawić limit." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "Ustaw limit czasu zestawu IP na czarnej liście." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" +"Ustaw cel zapory sieciowej dla wszystkich reguł związanych z czasem letnim." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." -msgstr "" +msgstr "Ustaw miejsce docelowe zapory dla wszystkich reguł związanych z SRC." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" +"Ustaw domyślny typ globalnego zestawu IP, aby blokować pakiety przychodzące " +"(SRC) i/lub wychodzące (DST)." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." +msgstr "Ustaw limit czasu dla maclist IPSet." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "Ustaw limit czasu zestawu IP na białej liście." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 msgid "Settings" -msgstr "" +msgstr "Ustawienia" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." -msgstr "" +msgstr "Rozmiar kolejki pobierania dla równoległego przetwarzania pobierania." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" -msgstr "" +msgstr "Źródła (informacje)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." -msgstr "" +msgstr "Specjalne opcje konfiguracji dla wybranego narzędzia do pobierania." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" +"Uruchamia w tle mały monitor dziennika, który blokuje podejrzane próby " +"logowania SSH / LuCI." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" -msgstr "" +msgstr "Interfejs wyzwalacza uruchamiania" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" -msgstr "" +msgstr "Status/Wersja" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" -msgstr "" +msgstr "Wstrzymaj" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." -msgstr "" +msgstr "Katalog docelowy dla plików raportów związanych z IPSet." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." -msgstr "" +msgstr "Katalog docelowy dla kopii zapasowych skompresowanej listy źródeł." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:87 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:96 msgid "The Refresh Timer could not been updated." -msgstr "" +msgstr "Nie można zaktualizować czasu odświeżania." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:89 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:98 msgid "The Refresh Timer has been updated." -msgstr "" +msgstr "Czas odświeżania został zaktualizowany." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:57 msgid "The day of the week (opt., values: 1-7 possibly sep. by , or -)" -msgstr "" +msgstr "Dni tygodnia (opcjonalnie, wartości: 1-7, osobno, lub -)" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:47 msgid "The hours portition (req., range: 0-23)" -msgstr "" +msgstr "Godzina (wymagane, zakres: 0–23)" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:52 msgid "The minutes portion (opt., range: 0-59)" -msgstr "" +msgstr "Minuta (opcjonalnie, zakres: 0–59)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." msgstr "" +"Wybrany priorytet będzie używany do przetwarzania w tle usługi BanIP. Ta " +"zmiana wymaga pełnego restartu usługi BanIP, aby zaczęła działać." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/logread.js:28 msgid "The syslog output, pre-filtered for banIP related messages only." @@ -671,10 +824,14 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" +"Jest to lokalna czarna lista banIP, aby zawsze odmawiać dostępu dla " +"niektórych adresów IP/CIDR. <br /> <em><b>Uwaga:</b></em> dodaj tylko jeden " +"adres IPv4, adres IPv6 lub nazwę domeny na wiersz. Komentarze wprowadzone z " +"\"#\" są dozwolone - symbole wieloznaczne i wyrażenia regularnego nie są." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 msgid "" @@ -682,66 +839,86 @@ msgid "" "<em><b>Please note:</b></em> add only one MAC address per line. Comments " "introduced with '#' are allowed - domains, wildcards and regex are not." msgstr "" +"Jest to lokalna maclista banIP zawsze zezwalająca na niektóre adresy MAC. " +"<br /> <em><b>Uwaga:</b></em> dodaj tylko jeden adres MAC w wierszu. " +"Komentarze wprowadzone z \"#\" są dozwolone - domeny, symbole wieloznaczne i " +"wyrażenia regularnego nie są." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" +"Jest to lokalna biała lista banIP, aby zawsze zezwalać na określone adresy " +"IP/CIDR. <br /> <em><b>Uwaga:</b></em> dodaj tylko jeden adres IPv4, adres " +"IPv6 lub nazwę domeny na wiersz. Komentarze wprowadzone z \"#\" są dozwolone " +"- symbole wieloznaczne i wyrażenia regularnego nie są." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" +"Ta zakładka pokazuje ostatni wygenerowany raport IPSet, naciśnij przycisk " +"'Odśwież', aby uzyskać aktualny raport." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" -msgstr "" +msgstr "Sygnatura czasowa" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:16 msgid "" "To keep your banIP lists up-to-date, you should setup an automatic update " "job for these lists." msgstr "" +"Aby listy BanIP były aktualne, należy skonfigurować zadanie automatycznej " +"aktualizacji tych list." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." -msgstr "" +msgstr "Temat dla wiadomości e-mail z powiadomieniem BanIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "Opóźnienie wyzwalacza" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:119 msgid "Type" -msgstr "" +msgstr "Typ" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:17 msgid "Unable to save changes: %s" -msgstr "" +msgstr "Nie można zapisać zmian: %s" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "Pełne rejestrowanie debugowania" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" -msgstr "" +msgstr "Przekazywanie WAN" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" -msgstr "" +msgstr "Wejście WAN" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:11 msgid "Whitelist IP/CIDR" -msgstr "" +msgstr "Biała lista IP/CIDR" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "Tylko biała lista" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "Limit czasu białej listy" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 @@ -749,10 +926,12 @@ msgid "" "Whitelist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" +"Zmiany na białej liście zostały zapisane. Odśwież listę banIP, aby zmiany " +"zostały wprowadzone." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." -msgstr "" +msgstr "Biała lista ..." #: applications/luci-app-banip/luasrc/controller/banip.lua:6 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:3 @@ -761,7 +940,29 @@ msgstr "banIP" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:41 msgid "banIP action" -msgstr "" +msgstr "Akcje banIP" + +#~ msgid "" +#~ "This is the local banIP blacklist to always-deny certain IP/CIDR " +#~ "addresses.<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 " +#~ "address per line. Comments introduced with '#' are allowed - domains, " +#~ "wildcards and regex are not." +#~ msgstr "" +#~ "Jest to lokalna czarna lista banIP, aby zawsze odmawiać niektórych " +#~ "adresów IP/CIDR. <br /> <em><b>Uwaga:</b></em> dodaj tylko jeden adres " +#~ "IPv4 lub IPv6 w wierszu. Komentarze wprowadzone z \"#\" są dozwolone - " +#~ "domeny, symbole wieloznaczne i wyrażenia regularnego nie są." + +#~ msgid "" +#~ "This is the local banIP whitelist to always allow certain IP/CIDR " +#~ "addresses.<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 " +#~ "address or per line. Comments introduced with '#' are allowed - domains, " +#~ "wildcards and regex are not." +#~ msgstr "" +#~ "Jest to lokalna biała lista banIP, aby zawsze zezwalać na określone " +#~ "adresy IP/CIDR. <br /> <em><b>Uwaga:</b></em> dodaj tylko jeden adres " +#~ "IPv4 lub IPv6 lub na linię. Komentarze wprowadzone z \"#\" są dozwolone - " +#~ "domeny, symbole wieloznaczne i wyrażenia regularnego nie są." #~ msgid "ASN Overview" #~ msgstr "Przegląd ASN" diff --git a/applications/luci-app-banip/po/pt/banip.po b/applications/luci-app-banip/po/pt/banip.po index 172f15f541..38bec07d11 100644 --- a/applications/luci-app-banip/po/pt/banip.po +++ b/applications/luci-app-banip/po/pt/banip.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-10-04 13:41+0000\n" +"PO-Revision-Date: 2021-05-10 09:32+0000\n" "Last-Translator: ssantos <ssantos@web.de>\n" "Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsbanip/pt/>\n" @@ -8,223 +8,278 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.3-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" -msgstr "" +msgstr "-m limit --limit 2/seg (predefinição)" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "1 hora" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "12 horas" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "24 horas" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "30 minutos" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "6 horas" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" -msgstr "" +msgstr "ASNs" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:127 msgid "Action" -msgstr "" +msgstr "Ação" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" -msgstr "" +msgstr "Aparelhos ativos" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" -msgstr "" +msgstr "Interfaces ativas" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" -msgstr "" +msgstr "Logterms ativos" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" -msgstr "" +msgstr "Fontes Ativas" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" +msgstr "Sub-redes ativas" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." msgstr "" +"Adicionar IPSets adicionais não relacionados ao banIP, para relatórios e " +"consultas, por exemplo." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." -msgstr "" +msgstr "Adicionar esta IP/CIDR à sua lista local." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" -msgstr "" +msgstr "Configurações adicionais" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" "Atraso de gatilho adicional em segundos antes do início do processamento de " "banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" -msgstr "" +msgstr "Configurações avançadas de cadeia" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" -msgstr "" +msgstr "Configurações avançadas de E-Mail" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" -msgstr "" +msgstr "Configurações avançadas de registos" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" -msgstr "" +msgstr "Lista negra automática" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" -msgstr "" +msgstr "Deteção automática" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" -msgstr "" +msgstr "Lista branca automática" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" +"Transfere automaticamente os IPs suspeitos do registo para a lista negra do " +"banIP durante o tempo de execução." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" +"Transfere automaticamente os IPs de ligações ascendentes para a lista branca " +"do banIP durante o tempo de execução." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "Diretório do Backup" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" -msgstr "" +msgstr "Diretório Base Temporário" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +"O Diretório Base Temporário usado para todas as operações relacionadas com o " +"tempo de execução do banIP." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "Tempo limite da Lista negra" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" +"As alterações da Lista Negra foram salvas. Atualize a sua lista BanIP para " +"que as alterações surtam efeito." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" -msgstr "" +msgstr "Origem da Blocklist" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:22 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:73 msgid "Cancel" -msgstr "" +msgstr "Cancelar" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" "master/net/banip/files/README.md\" target=\"_blank\" rel=\"noreferrer " "noopener\" >check the online documentation</a>" msgstr "" +"Configuração do pacote banIP para fazer o bloqueio dos endereços/subnets ip " +"através do IPSet. Para mais informações <a href=\"https://github.com/openwrt/" +"packages/blob/master/net/banip/files/README.md\" target=\"_blank\" rel=" +"\"noreferrer noopener\" > consulte a documentação online</a>" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:124 msgid "Count ACC" -msgstr "" +msgstr "Contagem ACC" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:122 msgid "Count CIDR" -msgstr "" +msgstr "Contagem CIDR" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:121 msgid "Count IP" -msgstr "" +msgstr "Contagem IP" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:123 msgid "Count MAC" -msgstr "" +msgstr "Contagem MAC" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:120 msgid "Count SUM" -msgstr "" +msgstr "Contagem SOMA" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" -msgstr "" +msgstr "Países" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" -msgstr "" +msgstr "Tipo do IPSet DST" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" -msgstr "" +msgstr "Opções de log do DST" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" -msgstr "" +msgstr "Alvo DST" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" -msgstr "" +msgstr "A cadeia padrão utilizada pelo banIP é 'forwarding_lan_rule'" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" -msgstr "" +msgstr "A cadeia padrão utilizada pelo banIP é 'forwarding_wan_rule'" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" -msgstr "" +msgstr "A cadeia padrão utilizada pelo banIP é 'input_lan_rule'" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" -msgstr "" +msgstr "A cadeia padrão utilizada pelo banIP é 'input_wan_rule'" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" +"Detecte automaticamente as interfaces de rede, os aparelhos, as sub-redes e " +"os protocolos relevantes." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" -msgstr "" +msgstr "Parâmetros de Descarregamento" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" -msgstr "" +msgstr "Fila de Descarregamento" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "Ferramenta para Descarregar" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" -msgstr "" +msgstr "Ações do E-Mail" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" -msgstr "" +msgstr "Notificação por e-mail" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" -msgstr "" +msgstr "Perfil de e-mail" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" -msgstr "" +msgstr "Endereço de e-mail do destinatário" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" -msgstr "" +msgstr "Endereço de e-mail do remetente" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" -msgstr "" +msgstr "Assunto do e-mail" #: applications/luci-app-banip/luasrc/controller/banip.lua:9 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:35 @@ -234,294 +289,364 @@ msgstr "Editar Lista Negra" #: applications/luci-app-banip/luasrc/controller/banip.lua:11 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 msgid "Edit Maclist" -msgstr "" +msgstr "Edite a Maclist" #: applications/luci-app-banip/luasrc/controller/banip.lua:10 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:43 msgid "Edit Whitelist" msgstr "Editar lista de permissões" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" -msgstr "" +msgstr "Active o log do DST" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" -msgstr "" +msgstr "Active o log do SRC" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." -msgstr "" +msgstr "Ative o serviço banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" +"Ativa o registo de depuração detalhado para casos de todos os erros de " +"processamento." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" -msgstr "" +msgstr "Ativado" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." -msgstr "" +msgstr "Ativa o suporte IPv4 no banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." -msgstr "" +msgstr "Ativa o suporte IPv6 no banIP." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:125 msgid "Entry Details" -msgstr "" +msgstr "Detalhes da entrada" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:18 msgid "Existing job(s)" -msgstr "" +msgstr "Tarefa(s) existente(s)" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" +msgstr "Outras Origens" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" -msgstr "" +msgstr "Configurações gerais" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" -msgstr "" +msgstr "Tipo do IPSet global" #: applications/luci-app-banip/root/usr/share/rpcd/acl.d/luci-app-banip.json:3 msgid "Grant access to LuCI app banIP" -msgstr "" +msgstr "Conceda acesso à app LuCI banIP" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" -msgstr "" +msgstr "Alta prioridade" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" -msgstr "" +msgstr "Máxima Prioridade" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "Informações IPSet" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:45 msgid "IPSet Query" -msgstr "" +msgstr "Consulta IPSet" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." -msgstr "" +msgstr "Consulta IPSet..." #: applications/luci-app-banip/luasrc/controller/banip.lua:8 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:27 msgid "IPSet Report" -msgstr "" +msgstr "Relatório IPSet" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" -msgstr "" +msgstr "Detalhes do IPSet" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" -msgstr "" +msgstr "Suporte ao IPv4" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" -msgstr "" +msgstr "Suporte de IPv6" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" -msgstr "" +msgstr "Informação" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" -msgstr "" +msgstr "Encaminhamento LAN" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" -msgstr "" +msgstr "Entrada LAN" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "Última Execução" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" -msgstr "" +msgstr "Mínima Prioridade" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" -msgstr "" +msgstr "Menor Prioridade" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." -msgstr "" +msgstr "Limite o acionador de e-mail para certas ações do banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." -msgstr "" +msgstr "Limite o monitor de registo para certos termos." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "Limita a seleção a certas fontes locais." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" -msgstr "" +msgstr "Número da linha a remover" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." -msgstr "" +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:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" +"Lista de ferramentas de descarregamento suportadas e completamente pré-" +"configuradas." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "Fontes Locais" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" -msgstr "" +msgstr "Limite do Registo" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" -msgstr "" +msgstr "Monitor do registo" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" -msgstr "" +msgstr "Termos do registo" #: applications/luci-app-banip/luasrc/controller/banip.lua:12 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:59 msgid "Log View" -msgstr "" +msgstr "Vista do registo log" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." -msgstr "" +msgstr "Os pacotes suspeitos da entrada do registo - geralmente descartados." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +"Os pacotes suspeitos da saída do registo - geralmente rejeitados. O registo " +"de tais pacotes pode causar um aumento na latência devido à necessidade de " +"recursos adicionais do sistema." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "A contagem dos registos do LuCI" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "Tempo Limite do Maclist" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +"As alterações do Maclist foram salvas. Atualize as suas listas banIP para " +"que as alterações sejam aplicadas." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "Contagem dos registos do NGINX" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" -msgstr "" +msgstr "Nome" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" -msgstr "" +msgstr "Interfaces de Rede" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:88 msgid "No Query results!" -msgstr "" +msgstr "A consulta não retornou resultados!" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/logread.js:21 msgid "No banIP related logs yet!" -msgstr "" +msgstr "Ainda não há nenhum registo relacionado ao banIP!" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" -msgstr "" +msgstr "Prioridade Normal (padrão)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" -msgstr "" +msgstr "A quantidade das entradas CIDR" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" -msgstr "" +msgstr "A quantidade das entradas IP" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" -msgstr "" +msgstr "A quantidade das entradas MAC" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" -msgstr "" +msgstr "A quantidade das entradas que foram acessadas" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" -msgstr "" +msgstr "A quantidade de todos os IPSets" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" +msgstr "A quantidade de todas as entradas" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" +"A quantidade das autenticações LuCI repetidas, vindas a partir do mesmo IP " +"que falharam e que estão no registo antes do banimento." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" +"A quantidade de solicitações com falha do nginx do mesmo IP no registo antes " +"do banimento." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." msgstr "" +"A quantidade de repetições de autenticação com falha do SSH a partir do " +"mesmo IP no registo antes do banimento." #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "Visão Geral" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" +"Analise apenas o último número declarado das entradas de registo na busca " +"dos eventos suspeitos." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." -msgstr "" +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/ipsetreport.js:96 msgid "Query" -msgstr "" +msgstr "Consulta" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." -msgstr "" +msgstr "O endereço do destinatário para os e-mails de notificação do banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "Atualizar" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:15 msgid "Refresh Timer" -msgstr "" +msgstr "Atualizar Temporizador" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." -msgstr "" +msgstr "Atualizando o Temporizador..." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:62 msgid "Remove an existing job" -msgstr "" +msgstr "Remover uma tarefa existente" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" -msgstr "" +msgstr "Diretório de Relatórios" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" +msgstr "Reiniciar" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." msgstr "" +"Restrinja o acesso à internet de/para uma pequena quantidade de sites/IPs " +"seguros e bloqueie o acesso de/para o resto da internet." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" -msgstr "" +msgstr "Resultado" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" -msgstr "" +msgstr "Flags de Execução" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" -msgstr "" +msgstr "Informações de Execução" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" -msgstr "" +msgstr "O tipo do conjunto de IPs SRC" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" -msgstr "" +msgstr "Opções de registo SRC" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" -msgstr "" +msgstr "Destino SRC" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" -msgstr "" +msgstr "O tipo do conjunto de IPs SRC+DST" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "A quantidade de registos SSH" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 @@ -533,133 +658,171 @@ msgid "" "Search the active banIP-related IPSets for a specific IP, CIDR or MAC " "address." msgstr "" +"Pesquise os conjuntos de IPs ativos relacionados ao banIP por um endereço " +"IP, CIDR ou MAC específico." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." -msgstr "" +msgstr "Selecione as interfaces de rede relevantes manualmente." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" +"Envie e-mails de notificação relacionados ao banIP. É necessário a " +"instalação e configuração do pacote adicional 'msmtp'." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." -msgstr "" +msgstr "Endereço do remetente para os e-mails de notificação do banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" -msgstr "" +msgstr "Prioridade do serviço" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "Set a new banIP job" -msgstr "" +msgstr "Definir nova tarefa banIP" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" +"Define o tipo DST individual por conjunto de IPs para bloquear somente " +"pacotes de saída." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" +"Define o tipo SRC individual por conjunto de IPs para bloquear somente " +"pacotes de entrada." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" +"Define o tipo SRC+DST individual por conjunto de IPs para bloquear pacotes " +"de entrada e saída." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" +"Define as opções do registo DST especiais. Por exemplo: para definir uma " +"taxa limite." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" +"Define as opções especiais do registo SRC . Por exemplo: para definir uma " +"taxa limite." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "Define o tempo limite da lista negra dos conjuntos de IPs." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." -msgstr "" +msgstr "Define o destino do firewall para todas as regras relacionadas ao DST." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." -msgstr "" +msgstr "Define o destino do firewall para todas as regras relacionadas ao SRC." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" +"Define o padrão do tipo do conjunto global dos IPs, para bloquear os pacotes " +"da entrada (SRC) e/ou da saída (DST)." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." +msgstr "Define o tempo limite do conjunto dos IPs maclist." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "Define o tempo limite da lista branca do conjunto de IPs." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 msgid "Settings" -msgstr "" +msgstr "Configurações" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" +"O tamanho da fila de descarrega para o processamento de descarregas em " +"paralelo." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" -msgstr "" +msgstr "Fontes (Informações)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" +"Opções especiais de configuração para o utilitário de descarregamento " +"selecionado." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" +"Inicia um pequeno monitor de registo em segundo plano para bloquear " +"tentativas suspeitas de autenticação SSH/LuCI." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" -msgstr "" +msgstr "Interface do Gatilho de Inicialização" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" -msgstr "" +msgstr "Condição geral / versão" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" -msgstr "" +msgstr "Suspender" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" +"Pasta de destino para ficheiros de relatório relacionados ao conjunto de IPs." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." -msgstr "" +msgstr "O diretório de destino para os backups compactados da lista de origem." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:87 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:96 msgid "The Refresh Timer could not been updated." -msgstr "" +msgstr "Não foi possível atualizar o tempo de atualização do temporizador." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:89 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:98 msgid "The Refresh Timer has been updated." -msgstr "" +msgstr "O tempo de atualização foi atualizado." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:57 msgid "The day of the week (opt., values: 1-7 possibly sep. by , or -)" -msgstr "" +msgstr "O dia da semana (valores opc.: 1-7 possivelmente sep. por , ou -)" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:47 msgid "The hours portition (req., range: 0-23)" -msgstr "" +msgstr "A parte das horas (obg., intervalo: 0-23)" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:52 msgid "The minutes portion (opt., range: 0-59)" -msgstr "" +msgstr "A parte dos minutos (opt., intervalo: 0-59)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." msgstr "" +"A prioridade selecionada será usada para o processamento em segundo plano do " +"banIP. Esta alteração necessita de uma reinicialização completa do serviço " +"banIP para que as alterações sejam aplicadas." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/logread.js:28 msgid "The syslog output, pre-filtered for banIP related messages only." @@ -669,10 +832,14 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" +"Esta é a lista negra local do banIP para sempre negar determinados endereços " +"IP/CIDR. <br /> <em> <b> Observação: </b> </em> adicione apenas um endereço " +"IPv4, um endereço IPv6 ou um nome de domínio por linha . Comentários " +"iniciados com '#' são permitidos - curingas e regex não." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 msgid "" @@ -680,66 +847,86 @@ msgid "" "<em><b>Please note:</b></em> add only one MAC address per line. Comments " "introduced with '#' are allowed - domains, wildcards and regex are not." msgstr "" +"Este é o maclist local do banIP para sempre permitir certos endereços MAC. " +"<br /> <em> <b> Observação: </b> </em> adicione apenas um endereço MAC por " +"linha. Comentários iniciados com '#' são permitidos - domínios, curingas e " +"regex não são." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" +"Esta é a lista branca local do banIP para sempre permitir determinados " +"endereços IP/CIDR. <br /> <em> <b> Observação: </b> </em> adicione apenas um " +"endereço IPv4, endereço IPv6 ou nome de domínio por linha. Comentários " +"iniciados com '#' são permitidos - curingas e regex não." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" +"Esta guia mostra o último Relatório gerado do Conjunto de IPs, pressione o " +"botão 'Atualizar' para obter o atual." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" -msgstr "" +msgstr "Marca de Tempo" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:16 msgid "" "To keep your banIP lists up-to-date, you should setup an automatic update " "job for these lists." msgstr "" +"Para manter as suas listas banIP atualizadas, precisa configurar uma tarefa " +"de atualização automática para estas listas." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." -msgstr "" +msgstr "Tópico para e-mails de notificação do banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "Atraso do Gatilho" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:119 msgid "Type" -msgstr "" +msgstr "Tipo" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:17 msgid "Unable to save changes: %s" -msgstr "" +msgstr "Impossível gravar as modificações: %s" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "Registos detalhados de depuração" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" -msgstr "" +msgstr "Redirecionar WAN" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" -msgstr "" +msgstr "Entrada WAN" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:11 msgid "Whitelist IP/CIDR" -msgstr "" +msgstr "Lista branca IP/CIDR" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "Apenas lista branca" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "Tempo limite da lista branca" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 @@ -747,10 +934,12 @@ msgid "" "Whitelist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" +"As alterações da lista branca foram salvas. Atualize a sua lista BanIP para " +"que as alterações surtam efeito." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." -msgstr "" +msgstr "Lista Branca..." #: applications/luci-app-banip/luasrc/controller/banip.lua:6 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:3 @@ -759,7 +948,7 @@ msgstr "banIP" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:41 msgid "banIP action" -msgstr "" +msgstr "Ação do banIP" #~ msgid "ASN Overview" #~ msgstr "Visão Geral da ASN" diff --git a/applications/luci-app-banip/po/pt_BR/banip.po b/applications/luci-app-banip/po/pt_BR/banip.po index 72bcb332f4..41b7f23c0f 100644 --- a/applications/luci-app-banip/po/pt_BR/banip.po +++ b/applications/luci-app-banip/po/pt_BR/banip.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-02-05 14:57+0000\n" +"PO-Revision-Date: 2021-04-25 02:37+0000\n" "Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n" "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsbanip/pt_BR/>\n" @@ -8,109 +8,158 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.5-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" -msgstr "" +msgstr "-m limit --limit 2/seg (padrão)" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "1 hora" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "12 horas" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "24 horas" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "30 minutos" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "6 horas" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" -msgstr "" +msgstr "ASNs" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:127 msgid "Action" msgstr "Ação" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" -msgstr "" +msgstr "Dispositivos Ativos" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" -msgstr "" +msgstr "Interfaces Ativas" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" -msgstr "" +msgstr "Logterms Ativo" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" msgstr "Fontes Ativas" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" +msgstr "Sub-redes Ativas" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." msgstr "" +"Adicione IPSets adicionais não relacionados ao banIP, para relatórios e " +"consultas por exemplo." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." -msgstr "" +msgstr "Adicione essa IP/CIDR a sua lista local." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" msgstr "Configurações Adicionais" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" "Atraso de disparo adicional em segundos antes do início do processamento de " "banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" -msgstr "" +msgstr "Configuração de cadeia avançada" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" msgstr "Configurações Avançadas do E-Mail" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" -msgstr "" +msgstr "Configuração de registros avançada" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" -msgstr "" +msgstr "Lista negra automática" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" -msgstr "" +msgstr "Detecção Automática" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" -msgstr "" +msgstr "Lista Branca Automática" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" +"Transfira automaticamente os IPs suspeitos dos registros para a lista negra " +"do banIP durante a execução." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" +"Transfira automaticamente os IPs do enlace para a lista branca durante a " +"execução." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "Diretório da cópia de segurança" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" msgstr "Diretório Base Temporário" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +"O Diretório Base Temporário usado para todas as operações relacionadas com o " +"tempo de execução do banIP." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "Tempo limite da Lista negra" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" +"As alterações da Lista Negra foram salvas. Atualize a sua lista BanIP para " +"que as alterações surtam efeito." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" msgstr "Fontes das listas de bloqueio" @@ -120,109 +169,115 @@ msgstr "Fontes das listas de bloqueio" msgid "Cancel" msgstr "Cancelar" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" "master/net/banip/files/README.md\" target=\"_blank\" rel=\"noreferrer " "noopener\" >check the online documentation</a>" msgstr "" +"Configuração do pacote banIP para fazer o bloqueio dos endereços/subnets ip " +"através do IPSet. Para mais informações <a href=\"https://github.com/openwrt/" +"packages/blob/master/net/banip/files/README.md\" target=\"_blank\" rel=" +"\"noreferrer noopener\" > consulte a documentação online</a>" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:124 msgid "Count ACC" -msgstr "" +msgstr "Contagem ACC" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:122 msgid "Count CIDR" -msgstr "" +msgstr "Contagem CIDR" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:121 msgid "Count IP" -msgstr "" +msgstr "Contagem IP" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:123 msgid "Count MAC" -msgstr "" +msgstr "Contagem MAC" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:120 msgid "Count SUM" -msgstr "" +msgstr "Contagem SOMA" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" -msgstr "" +msgstr "Países" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" -msgstr "" +msgstr "Tipo do IPSet DST" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" -msgstr "" +msgstr "Opções de log do DST" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" -msgstr "" +msgstr "Alvo DST" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" -msgstr "" +msgstr "A cadeia padrão utilizada pelo banIP é 'forwarding_lan_rule'" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" -msgstr "" +msgstr "A cadeia padrão utilizada pelo banIP é 'forwarding_wan_rule'" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" -msgstr "" +msgstr "A cadeia padrão utilizada pelo banIP é 'input_lan_rule'" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" -msgstr "" +msgstr "A cadeia padrão utilizada pelo banIP é 'input_wan_rule'" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" +"Detecte automaticamente as interfaces de rede, os dispositivos, as sub-redes " +"e os protocolos relevantes." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" msgstr "Parâmetros de Download" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" msgstr "Fila de Download" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "Ferramenta para Baixar" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" -msgstr "" +msgstr "Ações do E-Mail" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" msgstr "Notificação por E-Mail" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" msgstr "E-Mail do Perfil" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" msgstr "Endereço de E-Mail do Destinatário" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" msgstr "Endereço de E-Mail do Remetente" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" msgstr "Assunto do E-Mail" @@ -234,186 +289,216 @@ msgstr "Editar a Lista Negra" #: applications/luci-app-banip/luasrc/controller/banip.lua:11 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 msgid "Edit Maclist" -msgstr "" +msgstr "Edite a Maclist" #: applications/luci-app-banip/luasrc/controller/banip.lua:10 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:43 msgid "Edit Whitelist" msgstr "Editar a Lista Branca" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" -msgstr "" +msgstr "Active o log do DST" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" -msgstr "" +msgstr "Active o log do SRC" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." -msgstr "" +msgstr "Ative o serviço banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" "Ativa o registro de depuração detalhada nos casos de qualquer erro de " "processamento." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" msgstr "Ativado" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." -msgstr "" +msgstr "Ativa o suporte IPv4 no banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." -msgstr "" +msgstr "Ativa o suporte IPv6 no banIP." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:125 msgid "Entry Details" -msgstr "" +msgstr "Detalhes da entrada" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:18 msgid "Existing job(s)" msgstr "Tarefa(s) existente(s)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" +msgstr "Outras Origens" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" -msgstr "Configurações Gerais" +msgstr "Configurações gerais" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" -msgstr "" +msgstr "Tipo do IPSet global" #: applications/luci-app-banip/root/usr/share/rpcd/acl.d/luci-app-banip.json:3 msgid "Grant access to LuCI app banIP" -msgstr "" +msgstr "Conceda acesso ao aplicativo LuCI banIP" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" -msgstr "" +msgstr "Alta prioridade" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" -msgstr "" +msgstr "Máxima Prioridade" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "Informações IPSet" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:45 msgid "IPSet Query" -msgstr "" +msgstr "Consulta IPSet" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." -msgstr "" +msgstr "Consulta IPSet..." #: applications/luci-app-banip/luasrc/controller/banip.lua:8 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:27 msgid "IPSet Report" -msgstr "" +msgstr "Relatório IPSet" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" -msgstr "" +msgstr "Detalhes do IPSet" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" -msgstr "" +msgstr "Suporte ao IPv4" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" msgstr "Suporte ao IPv6" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" msgstr "Informações" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" -msgstr "" +msgstr "Encaminhamento LAN" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" -msgstr "" +msgstr "Entrada LAN" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "Última Execução" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" -msgstr "" +msgstr "Mínima Prioridade" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" -msgstr "" +msgstr "Menor Prioridade" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." -msgstr "" +msgstr "Limite o acionador de e-mail para certas ações do banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." -msgstr "" +msgstr "Limite o monitor de registro para certos termos." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "Limita a seleção a certas fontes locais." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" -msgstr "" +msgstr "O número da linha para remover" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 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:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "Lista de ferramentas compatíveis e já pré-configuradas para download." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "Fontes Locais" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" -msgstr "" +msgstr "Limite do Registro" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" -msgstr "" +msgstr "Monitor do registro" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" -msgstr "" +msgstr "Termos do registro" #: applications/luci-app-banip/luasrc/controller/banip.lua:12 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:59 msgid "Log View" -msgstr "Exibir o Registro Log" +msgstr "Exiba o registro log" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." -msgstr "" +msgstr "Os pacotes suspeitos da entrada do registro - geralmente descartados." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +"Os pacotes suspeitos da saída do registro - geralmente rejeitados. O " +"registro de tais pacotes pode causar um aumento na latência devido à " +"necessidade de recursos adicionais do sistema." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "A contagem dos registros do LuCI" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "Tempo Limite do Maclist" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +"As alterações do Maclist foram salvas. Atualize as suas listas banIP para " +"que as alterações sejam aplicadas." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "Contagem dos registros do NGINX" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" msgstr "Nome" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" -msgstr "" +msgstr "Interfaces de Rede" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:88 msgid "No Query results!" @@ -421,59 +506,84 @@ msgstr "A Consulta Não Retornou Resultados!" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/logread.js:21 msgid "No banIP related logs yet!" -msgstr "" +msgstr "Ainda não há nenhum registro relacionado ao banIP!" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" -msgstr "" +msgstr "Prioridade Normal (padrão)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" -msgstr "" +msgstr "A quantidade das entradas CIDR" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" -msgstr "" +msgstr "A quantidade das entradas IP" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" -msgstr "" +msgstr "A quantidade das entradas MAC" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" -msgstr "" +msgstr "A quantidade das entradas que foram acessadas" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" -msgstr "" +msgstr "A quantidade de todos os IPSets" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" +msgstr "A quantidade de todas as entradas" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." msgstr "" +"A quantidade das autenticações LuCI repetidas, vindas a partir do mesmo IP " +"que falharam e que estão no registro antes do banimento." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" +"A quantidade de solicitações com falha do nginx do mesmo IP no registro " +"antes do banimento." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" +"A quantidade de repetições de autenticação com falha do SSH a partir do " +"mesmo IP no registro antes do banimento." #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" -msgstr "Visão Geral" +msgstr "Visão geral" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" +"Analise apenas o último número declarado das entradas de registro na busca " +"dos eventos suspeitos." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." -msgstr "" +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/ipsetreport.js:96 msgid "Query" msgstr "Consulta" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." -msgstr "" +msgstr "O endereço do destinatário para os e-mails de notificação do banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "Atualizar" @@ -481,49 +591,61 @@ msgstr "Atualizar" msgid "Refresh Timer" msgstr "Atualize o Temporizador" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." msgstr "Atualizando o Temporizador..." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:62 msgid "Remove an existing job" -msgstr "" +msgstr "Exclua uma tarefa já existente" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" msgstr "Diretório do Relatório" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" msgstr "Reiniciar" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." +msgstr "" +"Restrinja o acesso à internet de/para uma pequena quantidade de sites/IPs " +"seguros e bloqueie o acesso de/para o resto da internet." + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" msgstr "Resultado" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" msgstr "Executar Flags" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" -msgstr "" +msgstr "Informações de Execução" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" -msgstr "" +msgstr "O tipo do conjunto de IPs SRC" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" -msgstr "" +msgstr "Opções de registro SRC" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" -msgstr "" +msgstr "Destino SRC" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" -msgstr "" +msgstr "O tipo do conjunto de IPs SRC+DST" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "A quantidade de registros SSH" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 @@ -535,106 +657,138 @@ msgid "" "Search the active banIP-related IPSets for a specific IP, CIDR or MAC " "address." msgstr "" +"Pesquise os conjuntos de IPs ativos relacionados ao banIP por um endereço " +"IP, CIDR ou MAC específico." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." -msgstr "" +msgstr "Selecione as interfaces de rede relevantes manualmente." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" +"Envie e-mails de notificação relacionados ao banIP. É necessário a " +"instalação e configuração do pacote adicional 'msmtp'." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." -msgstr "" +msgstr "Endereço do remetente para os e-mails de notificação do banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "Prioridade do serviço" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "Set a new banIP job" -msgstr "" +msgstr "Definir nova tarefa banIP" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" +"Define o tipo DST individual por conjunto de IPs para bloquear somente " +"pacotes de saída." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" +"Define o tipo SRC individual por conjunto de IPs para bloquear somente " +"pacotes de entrada." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" +"Define o tipo SRC+DST individual por conjunto de IPs para bloquear pacotes " +"de entrada e saída." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" +"Define as opções do registro DST especiais. Por exemplo: para definir uma " +"taxa limite." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" +"Define as opções especiais do registro SRC . Por exemplo: para definir uma " +"taxa limite." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "Define o tempo limite da lista negra dos conjuntos de IPs." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." -msgstr "" +msgstr "Define o destino do firewall para todas as regras relacionadas ao DST." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." -msgstr "" +msgstr "Define o destino do firewall para todas as regras relacionadas ao SRC." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" +"Define o padrão do tipo do conjunto global dos IPs, para bloquear os pacotes " +"da entrada (SRC) e/ou da saída (DST)." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." +msgstr "Define o tempo limite do conjunto dos IPs maclist." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "Define o tempo limite da lista branca do conjunto de IPs." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 msgid "Settings" msgstr "Configurações" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" +"O tamanho da fila de download para o processamento dos downloads em paralelo." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" -msgstr "" +msgstr "Fontes (Informações)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" "Opções especiais de configuração para o utilitário de download selecionado." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" +"Inicia um pequeno monitor de registro em segundo plano para bloquear " +"tentativas suspeitas de autenticação SSH/LuCI." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" msgstr "Interface do Gatilho de Inicialização" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" msgstr "Condição Geral / Versão" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" msgstr "Suspender" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" +"Pasta de destino para arquivos de relatório relacionados ao conjunto de IPs." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." -msgstr "" +msgstr "O diretório de destino para os backups compactados da lista de origem." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:87 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:96 @@ -658,11 +812,14 @@ msgstr "A parte das horas (obg., intervalo: 0-23)" msgid "The minutes portion (opt., range: 0-59)" msgstr "A parte dos minutos (obg., intervalo: 0-59)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." msgstr "" +"A prioridade selecionada será usada para o processamento em segundo plano do " +"banIP. Esta alteração necessita de uma reinicialização completa do serviço " +"banIP para que as alterações sejam aplicadas." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/logread.js:28 msgid "The syslog output, pre-filtered for banIP related messages only." @@ -673,10 +830,14 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" +"Esta é a lista negra local do banIP para sempre negar determinados endereços " +"IP/CIDR. <br /> <em> <b> Observação: </b> </em> adicione apenas um endereço " +"IPv4, um endereço IPv6 ou um nome de domínio por linha . Comentários " +"iniciados com '#' são permitidos - curingas e regex não." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 msgid "" @@ -684,36 +845,48 @@ msgid "" "<em><b>Please note:</b></em> add only one MAC address per line. Comments " "introduced with '#' are allowed - domains, wildcards and regex are not." msgstr "" +"Este é o maclist local do banIP para sempre permitir certos endereços MAC. " +"<br /> <em> <b> Observação: </b> </em> adicione apenas um endereço MAC por " +"linha. Comentários iniciados com '#' são permitidos - domínios, curingas e " +"regex não são." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" +"Esta é a lista branca local do banIP para sempre permitir determinados " +"endereços IP/CIDR. <br /> <em> <b> Observação: </b> </em> adicione apenas um " +"endereço IPv4, endereço IPv6 ou nome de domínio por linha. Comentários " +"iniciados com '#' são permitidos - curingas e regex não." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" +"Esta aba mostra o último Relatório gerado do Conjunto de IPs, pressione o " +"botão 'Atualizar' para obter o atual." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" -msgstr "" +msgstr "Marca de Tempo" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:16 msgid "" "To keep your banIP lists up-to-date, you should setup an automatic update " "job for these lists." msgstr "" +"Para manter as suas listas banIP atualizadas, você precisa configurar uma " +"tarefa de atualização automática para estas listas." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." -msgstr "" +msgstr "Tópico para e-mails de notificação do banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "Gatilho de Atraso" @@ -727,23 +900,31 @@ msgstr "Tipo" msgid "Unable to save changes: %s" msgstr "Impossível salvar as modificações: %s" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "Registros Detalhados de Depuração" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" -msgstr "" +msgstr "Redirecionar WAN" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" -msgstr "" +msgstr "Entrada WAN" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:11 msgid "Whitelist IP/CIDR" -msgstr "" +msgstr "Lista branca IP/CIDR" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "Apenas lista branca" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "Tempo limite da lista branca" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 @@ -751,8 +932,10 @@ msgid "" "Whitelist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" +"As alterações da lista branca foram salvas. Atualize a sua lista BanIP para " +"que as alterações surtam efeito." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." msgstr "Lista Branca..." @@ -763,7 +946,7 @@ msgstr "Banir IP" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:41 msgid "banIP action" -msgstr "" +msgstr "Ação do banIP" #~ msgid "ASN Overview" #~ msgstr "Visão geral da ASN" diff --git a/applications/luci-app-banip/po/ro/banip.po b/applications/luci-app-banip/po/ro/banip.po index 41a56a3def..3c45739afe 100644 --- a/applications/luci-app-banip/po/ro/banip.po +++ b/applications/luci-app-banip/po/ro/banip.po @@ -11,12 +11,42 @@ msgstr "" "20)) ? 1 : 2;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" msgstr "" @@ -24,94 +54,103 @@ msgstr "" msgid "Action" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" "Întârziere suplimentară declanșare in secunde înainte de începerea " "procesării banIP." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "Director copie de siguranţă" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" msgstr "" @@ -121,7 +160,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -149,81 +188,81 @@ msgstr "" msgid "Count SUM" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "Utilitar descărcare" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" msgstr "" @@ -242,31 +281,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "Editare listă albă" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." msgstr "" @@ -278,11 +317,15 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" msgstr "" @@ -290,15 +333,15 @@ msgstr "" msgid "Grant access to LuCI app banIP" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "" @@ -306,7 +349,7 @@ msgstr "" msgid "IPSet Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." msgstr "" @@ -315,73 +358,81 @@ msgstr "" msgid "IPSet Report" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "Ultima rulare" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" @@ -390,27 +441,39 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" msgstr "" @@ -422,44 +485,61 @@ msgstr "" msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "Prezentare generală" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" @@ -467,12 +547,12 @@ msgstr "" msgid "Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "Reîmprospătare" @@ -480,7 +560,7 @@ msgstr "Reîmprospătare" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." msgstr "" @@ -488,42 +568,52 @@ msgstr "" msgid "Remove an existing job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" @@ -535,21 +625,21 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "" @@ -557,80 +647,92 @@ msgstr "" msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 msgid "Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" @@ -656,7 +758,7 @@ msgstr "" msgid "The minutes portion (opt., range: 0-59)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -669,9 +771,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -684,18 +786,18 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" msgstr "" @@ -705,11 +807,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "Intârzierea declanșării" @@ -723,17 +825,17 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -741,6 +843,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -748,7 +858,7 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." msgstr "" diff --git a/applications/luci-app-banip/po/ru/banip.po b/applications/luci-app-banip/po/ru/banip.po index c9685fd06a..a6824065b3 100644 --- a/applications/luci-app-banip/po/ru/banip.po +++ b/applications/luci-app-banip/po/ru/banip.po @@ -1,7 +1,7 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-01-09 15:32+0000\n" -"Last-Translator: Nt0G <nt0gggg@gmail.com>\n" +"PO-Revision-Date: 2021-03-14 05:18+0000\n" +"Last-Translator: masta0f1eave <lomskoff.dima@gmail.com>\n" "Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsbanip/ru/>\n" "Language: ru\n" @@ -9,117 +9,156 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.4.1-dev\n" +"X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "1 час" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "12 часов" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "24 часа" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "30 минут" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "6 часов" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:127 msgid "Action" -msgstr "" +msgstr "Действие" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" -msgstr "" +msgstr "Активные устройства" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" -msgstr "" +msgstr "Активные интерфейсы" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" -msgstr "" +msgstr "Активные источники" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" +msgstr "Активные подсети" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" -msgstr "" +msgstr "Дополнительные настройки" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "Дополнительная задержка срабатывания правил banIP в секундах." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" -msgstr "" +msgstr "Расширенные настройки электронной почты" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" -msgstr "" +msgstr "Автоматический черный список" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" -msgstr "" +msgstr "Автоопределение" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" -msgstr "" +msgstr "Автоматический белый список" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "Папка для резервных копий" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" -msgstr "" +msgstr "Расположение временных файлов" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "Тайм-аут черного списка" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" -msgstr "" +msgstr "Источники черного списка" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:22 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:73 msgid "Cancel" -msgstr "" +msgstr "Отмена" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -147,83 +186,83 @@ msgstr "" msgid "Count SUM" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" -msgstr "" +msgstr "Страны" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" -msgstr "" +msgstr "Параметры загрузки" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" -msgstr "" +msgstr "Очередь загрузки" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "Утилита для загрузки" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" -msgstr "" +msgstr "Уведомление по электронной почте" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" -msgstr "" +msgstr "Профиль электронной почты" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" -msgstr "" +msgstr "Адрес получателя" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" -msgstr "" +msgstr "Адрес отправителя" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" -msgstr "" +msgstr "Тема" #: applications/luci-app-banip/luasrc/controller/banip.lua:9 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:35 @@ -240,31 +279,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "Редактировать белый список" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." -msgstr "" +msgstr "Включить подробное формирование отчёта на случай возникновения ошибок." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" -msgstr "" +msgstr "Включено" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." msgstr "" @@ -274,37 +313,41 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:18 msgid "Existing job(s)" -msgstr "" +msgstr "Существующие задания" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" +msgstr "Дополнительные источники" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" -msgstr "" +msgstr "Общие настройки" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" msgstr "" #: applications/luci-app-banip/root/usr/share/rpcd/acl.d/luci-app-banip.json:3 msgid "Grant access to LuCI app banIP" -msgstr "" +msgstr "Предоставить доступ LuCI к приложению banIP" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" -msgstr "" +msgstr "Высокий приоритет" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" -msgstr "" +msgstr "Наивысший приоритет" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" -msgstr "" +msgstr "Информация об IPSet" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:45 msgid "IPSet Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." msgstr "" @@ -313,215 +356,263 @@ msgstr "" msgid "IPSet Report" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" -msgstr "" +msgstr "Поддержка iPv4" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" -msgstr "" +msgstr "Поддержка IPv6" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" -msgstr "" +msgstr "Информация" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "Последний запуск" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" -msgstr "" +msgstr "Наименьший приоритет" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" -msgstr "" +msgstr "Меньший приоритет" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" -msgstr "" +msgstr "Номер строки для удаления" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" +"Список поддерживаемых предварительно настроенных утилит для загрузки списков." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" #: applications/luci-app-banip/luasrc/controller/banip.lua:12 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:59 msgid "Log View" -msgstr "" +msgstr "Просмотр журнала" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" -msgstr "" +msgstr "Название" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" -msgstr "" +msgstr "Сетевые интерфейсы" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:88 msgid "No Query results!" -msgstr "" +msgstr "Нет результатов запроса!" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/logread.js:21 msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "Обзор" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:96 msgid "Query" -msgstr "" +msgstr "Запрос" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "Обновить" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:15 msgid "Refresh Timer" -msgstr "" +msgstr "Обновить таймер" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." -msgstr "" +msgstr "Обновить таймер..." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:62 msgid "Remove an existing job" -msgstr "" +msgstr "Удалить существующее задание" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" -msgstr "" +msgstr "Папка для отчётов" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" +msgstr "Перезапустить" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" -msgstr "" +msgstr "Результат" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" @@ -533,21 +624,21 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "" @@ -555,96 +646,108 @@ msgstr "" msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 -msgid "Settings" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 +msgid "Settings" +msgstr "Настройки" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" -msgstr "" +msgstr "Источники (информация)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." -msgstr "" +msgstr "Специальные опции конфигурации для выбранной утилиты загрузки." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" -msgstr "" +msgstr "Интерфейс для запуска" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" -msgstr "" +msgstr "Статус / Версия" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" -msgstr "" +msgstr "Приостановить" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:87 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:96 msgid "The Refresh Timer could not been updated." -msgstr "" +msgstr "Не удалось обновить таймер обновления." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:89 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:98 msgid "The Refresh Timer has been updated." -msgstr "" +msgstr "Таймер обновления обновлён." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:57 msgid "The day of the week (opt., values: 1-7 possibly sep. by , or -)" -msgstr "" +msgstr "День недели (необязательно, значения: 1–7, запятые или дефисы)" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:47 msgid "The hours portition (req., range: 0-23)" @@ -654,7 +757,7 @@ msgstr "" msgid "The minutes portion (opt., range: 0-59)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -667,9 +770,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -682,18 +785,18 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" msgstr "" @@ -703,35 +806,35 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "Задержка запуска" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:119 msgid "Type" -msgstr "" +msgstr "Тип" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:17 msgid "Unable to save changes: %s" -msgstr "" +msgstr "Невозможно сохранить изменения: %s" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "Подробный журнал отладки" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -739,6 +842,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -746,14 +857,14 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." -msgstr "" +msgstr "Белый список..." #: applications/luci-app-banip/luasrc/controller/banip.lua:6 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:3 msgid "banIP" -msgstr "" +msgstr "banIP" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:41 msgid "banIP action" diff --git a/applications/luci-app-banip/po/sk/banip.po b/applications/luci-app-banip/po/sk/banip.po index ee87c805b3..6a8aa53df3 100644 --- a/applications/luci-app-banip/po/sk/banip.po +++ b/applications/luci-app-banip/po/sk/banip.po @@ -10,12 +10,42 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 4.0-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" msgstr "" @@ -23,92 +53,101 @@ msgstr "" msgid "Action" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "Záložný priečinok" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" msgstr "" @@ -118,7 +157,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -146,81 +185,81 @@ msgstr "" msgid "Count SUM" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "Nástroj na sťahovanie" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" msgstr "" @@ -239,31 +278,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "Upraviť bielu listinu" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." msgstr "" @@ -275,11 +314,15 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" msgstr "" @@ -287,15 +330,15 @@ msgstr "" msgid "Grant access to LuCI app banIP" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "" @@ -303,7 +346,7 @@ msgstr "" msgid "IPSet Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." msgstr "" @@ -312,73 +355,81 @@ msgstr "" msgid "IPSet Report" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" @@ -387,27 +438,39 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" msgstr "" @@ -419,44 +482,61 @@ msgstr "" msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "Prehľad" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" @@ -464,12 +544,12 @@ msgstr "" msgid "Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "" @@ -477,7 +557,7 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." msgstr "" @@ -485,42 +565,52 @@ msgstr "" msgid "Remove an existing job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" @@ -532,21 +622,21 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "" @@ -554,80 +644,92 @@ msgstr "" msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 msgid "Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" @@ -653,7 +755,7 @@ msgstr "" msgid "The minutes portion (opt., range: 0-59)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -666,9 +768,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -681,18 +783,18 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" msgstr "" @@ -702,11 +804,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "" @@ -720,17 +822,17 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -738,6 +840,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -745,7 +855,7 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." msgstr "" diff --git a/applications/luci-app-banip/po/sv/banip.po b/applications/luci-app-banip/po/sv/banip.po index 46bdd03f42..304c94c1de 100644 --- a/applications/luci-app-banip/po/sv/banip.po +++ b/applications/luci-app-banip/po/sv/banip.po @@ -1,21 +1,51 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-08-20 15:36+0000\n" -"Last-Translator: Luna Jernberg <droidbittin@gmail.com>\n" +"PO-Revision-Date: 2021-03-19 04:16+0000\n" +"Last-Translator: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>\n" "Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsbanip/sv/>\n" "Language: sv\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.2.1-dev\n" +"X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" msgstr "" @@ -23,92 +53,101 @@ msgstr "" msgid "Action" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" -msgstr "" +msgstr "Aktiva källor" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" -msgstr "" +msgstr "Avancerade e-post-inställingar" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "Säkerhetskopiera mapp" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" -msgstr "" +msgstr "Tempkatalogbas" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" msgstr "" @@ -116,9 +155,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:73 msgid "Cancel" -msgstr "" +msgstr "Avbryt" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -146,83 +185,83 @@ msgstr "" msgid "Count SUM" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" -msgstr "" +msgstr "Ladda ner parametrar" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" -msgstr "" +msgstr "Nedladdningskö" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "Ladda ner verktyget" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" -msgstr "" +msgstr "E-postprofil" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" -msgstr "" +msgstr "Avsändaradress för e-post" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" -msgstr "" +msgstr "E-postämne" #: applications/luci-app-banip/luasrc/controller/banip.lua:9 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:35 @@ -239,31 +278,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "Redigera vitlista" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." -msgstr "" +msgstr "Aktivera utförlig avlusningsloggning i händelse av behandlingsfel." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" -msgstr "" +msgstr "Aktiverad" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." msgstr "" @@ -273,13 +312,17 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:18 msgid "Existing job(s)" +msgstr "Befintliga jobb" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" -msgstr "" +msgstr "Generella inställningar" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" msgstr "" @@ -287,15 +330,15 @@ msgstr "" msgid "Grant access to LuCI app banIP" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "" @@ -303,7 +346,7 @@ msgstr "" msgid "IPSet Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." msgstr "" @@ -312,151 +355,188 @@ msgstr "" msgid "IPSet Report" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "Kördes senast" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" #: applications/luci-app-banip/luasrc/controller/banip.lua:12 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:59 msgid "Log View" -msgstr "" +msgstr "Logutsikt" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:88 msgid "No Query results!" -msgstr "" +msgstr "Inga frågeresultat!" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/logread.js:21 msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" -msgstr "Översikt" +msgstr "Överblick" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" @@ -464,63 +544,73 @@ msgstr "" msgid "Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "Uppdatera" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:15 msgid "Refresh Timer" -msgstr "" +msgstr "Förnya stoppuret" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." -msgstr "" +msgstr "Förnya stoppuret..." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:62 msgid "Remove an existing job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" -msgstr "" +msgstr "Rapportkatalog" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" -msgstr "" +msgstr "Resultat" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" -msgstr "" +msgstr "Förflaggor" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" @@ -532,21 +622,21 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "" @@ -554,80 +644,92 @@ msgstr "" msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 msgid "Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" @@ -653,7 +755,7 @@ msgstr "" msgid "The minutes portion (opt., range: 0-59)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -666,9 +768,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -681,18 +783,18 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" msgstr "" @@ -702,11 +804,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "" @@ -720,17 +822,17 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -738,6 +840,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -745,7 +855,7 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." msgstr "" diff --git a/applications/luci-app-banip/po/templates/banip.pot b/applications/luci-app-banip/po/templates/banip.pot index a567f9e120..6bc63858bb 100644 --- a/applications/luci-app-banip/po/templates/banip.pot +++ b/applications/luci-app-banip/po/templates/banip.pot @@ -1,12 +1,42 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" msgstr "" @@ -14,92 +44,101 @@ msgstr "" msgid "Action" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" msgstr "" @@ -109,7 +148,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -137,81 +176,81 @@ msgstr "" msgid "Count SUM" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" msgstr "" @@ -230,31 +269,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." msgstr "" @@ -266,11 +305,15 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" msgstr "" @@ -278,15 +321,15 @@ msgstr "" msgid "Grant access to LuCI app banIP" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "" @@ -294,7 +337,7 @@ msgstr "" msgid "IPSet Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." msgstr "" @@ -303,73 +346,81 @@ msgstr "" msgid "IPSet Report" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" @@ -378,27 +429,39 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" msgstr "" @@ -410,44 +473,61 @@ msgstr "" msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" @@ -455,12 +535,12 @@ msgstr "" msgid "Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "" @@ -468,7 +548,7 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." msgstr "" @@ -476,42 +556,52 @@ msgstr "" msgid "Remove an existing job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" @@ -523,21 +613,21 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "" @@ -545,80 +635,92 @@ msgstr "" msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 msgid "Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" @@ -644,7 +746,7 @@ msgstr "" msgid "The minutes portion (opt., range: 0-59)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -657,9 +759,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -672,18 +774,18 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" msgstr "" @@ -693,11 +795,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "" @@ -711,17 +813,17 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -729,6 +831,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -736,7 +846,7 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." msgstr "" diff --git a/applications/luci-app-banip/po/tr/banip.po b/applications/luci-app-banip/po/tr/banip.po index 2a44cdf5d8..ed7a19919f 100644 --- a/applications/luci-app-banip/po/tr/banip.po +++ b/applications/luci-app-banip/po/tr/banip.po @@ -1,228 +1,282 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-01-30 09:06+0000\n" -"Last-Translator: Mete <selimmeteozdogan@gmail.com>\n" +"PO-Revision-Date: 2021-05-15 14:32+0000\n" +"Last-Translator: semih <semiht@gmail.com>\n" "Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsbanip/tr/>\n" "Language: tr\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.5-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" -msgstr "" +msgstr "-m limit --limit 2/sn (varsayılan)" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "1 saat" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "12 saat" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "24 saat" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "30 dakika" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "6 saat" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" -msgstr "" +msgstr "ASN'ler" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:127 msgid "Action" -msgstr "" +msgstr "Eylem" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" -msgstr "" +msgstr "Aktif Cihazlar" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" -msgstr "" +msgstr "Aktif Arayüzler" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" -msgstr "" +msgstr "Aktif Logterms" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" -msgstr "" +msgstr "Etkin Kaynaklar" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" +msgstr "Etkin Alt Ağlar" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." msgstr "" +"BanIP ile ilgili olmayan ek IPSetler ekleyin, ör. raporlama ve sorgular için." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." -msgstr "" +msgstr "Bu IP / CIDR'yi yerel beyaz listenize ekleyin." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" -msgstr "" +msgstr "Ek Ayarlar" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." -msgstr "" +msgstr "BanIP işleme başlamadan önce saniye cinsinden ek tetikleme gecikmesi." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" -msgstr "" +msgstr "Gelişmiş Zincir Ayarları" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" -msgstr "" +msgstr "Gelişmiş E-Posta Ayarları" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" -msgstr "" +msgstr "Gelişmiş Günlük Ayarları" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" -msgstr "" +msgstr "Otomatik Kara Liste" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" -msgstr "" +msgstr "Otomatik Algılama" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" -msgstr "" +msgstr "Otomatik Beyaz Liste" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" +"Çalışma zamanı sırasında şüpheli IP'leri günlükten banIP kara listesine " +"otomatik olarak aktarır." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" +"Çalışma süresi sırasında yukarı bağlantı IP'lerini otomatik olarak banIP " +"beyaz listesine aktarır." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "Yedekleme Dizini" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" -msgstr "" +msgstr "Temel Geçici Dizin" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +"BanIP ile ilgili tüm çalışma zamanı işlemleri için kullanılan Temel Temp " +"Dizini." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "Kara Liste Zaman Aşımı" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" +"Kara liste değişiklikleri kaydedildi. Değişikliklerin etkili olacağı banIP " +"listelerinizi yenileyin." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" -msgstr "" +msgstr "Engelleme Listesi Kaynakları" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:22 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:73 msgid "Cancel" -msgstr "" +msgstr "İptal" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" "master/net/banip/files/README.md\" target=\"_blank\" rel=\"noreferrer " "noopener\" >check the online documentation</a>" msgstr "" +"IPSet aracılığıyla ip adreslerini / alt ağları engellemek için banIP " +"paketinin yapılandırılması. Daha fazla bilgi için <a href=\"https://github." +"com/openwrt/packages/blob/master/net/banip/files/README.md\" target=\"_blank" +"\" rel=\"noreferrer noopener\" >check the online documentation</a>" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:124 msgid "Count ACC" -msgstr "" +msgstr "ACC'yi say" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:122 msgid "Count CIDR" -msgstr "" +msgstr "CIDR'I say" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:121 msgid "Count IP" -msgstr "" +msgstr "IP'yi say" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:123 msgid "Count MAC" -msgstr "" +msgstr "MAC'i say" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:120 msgid "Count SUM" -msgstr "" +msgstr "TOPLAMI say" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" -msgstr "" +msgstr "Ülkeler" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" -msgstr "" +msgstr "DST IPSet Türü" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" -msgstr "" +msgstr "DST Günlük Seçenekleri" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" -msgstr "" +msgstr "DST Hedefi" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" -msgstr "" +msgstr "BanIP tarafından kullanılan varsayılan zincir 'forwarding_lan_rule'" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" -msgstr "" +msgstr "BanIP tarafından kullanılan varsayılan zincir 'forwarding_wan_rule'" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" -msgstr "" +msgstr "BanIP tarafından kullanılan varsayılan zincir 'input_lan_rule'" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" -msgstr "" +msgstr "BanIP tarafından kullanılan varsayılan zincir 'input_wan_rule'" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" +"İlgili ağ arayüzlerini, cihazları, alt ağları ve protokolleri otomatik " +"olarak tespit edin." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" -msgstr "" +msgstr "İndirme Parametreleri" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" -msgstr "" +msgstr "Kuyruktakileri İndir" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "İndirme Aracı" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" -msgstr "" +msgstr "E-Posta İşlemleri" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" -msgstr "" +msgstr "E-Posta Bildirimi" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" -msgstr "" +msgstr "E-Posta Profili" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" -msgstr "" +msgstr "E-Posta Alıcı Adresi" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" -msgstr "" +msgstr "E-Posta Gönderen Adresi" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" -msgstr "" +msgstr "E-Posta Konusu" #: applications/luci-app-banip/luasrc/controller/banip.lua:9 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:35 @@ -232,294 +286,363 @@ msgstr "Karalisteyi Düzenle" #: applications/luci-app-banip/luasrc/controller/banip.lua:11 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 msgid "Edit Maclist" -msgstr "" +msgstr "Mac Listesini Düzenle" #: applications/luci-app-banip/luasrc/controller/banip.lua:10 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:43 msgid "Edit Whitelist" msgstr "Beyazlisteyi Düzenle" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" -msgstr "" +msgstr "DST günlük kaydını etkinleştir" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" -msgstr "" +msgstr "SRC günlük kaydını etkinleştir" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." -msgstr "" +msgstr "BanIP hizmetini etkinleştirin." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" +"Herhangi bir işleme hatası durumunda ayrıntılı hata ayıklama günlüğünü " +"etkinleştirin." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" -msgstr "" +msgstr "Etkin" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." -msgstr "" +msgstr "BanIP'de IPv4 desteğini etkinleştirir." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." -msgstr "" +msgstr "BanIP'de IPv6 desteğini etkinleştirir." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:125 msgid "Entry Details" -msgstr "" +msgstr "Girdi Ayrıntıları" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:18 msgid "Existing job(s)" -msgstr "" +msgstr "Mevcut iş(ler)" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" +msgstr "Ekstra Kaynaklar" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" -msgstr "" +msgstr "Genel Ayarlar" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" -msgstr "" +msgstr "Global IPSet Türü" #: applications/luci-app-banip/root/usr/share/rpcd/acl.d/luci-app-banip.json:3 msgid "Grant access to LuCI app banIP" -msgstr "" +msgstr "LuCI uygulaması banIP'ye erişim izni verin" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" -msgstr "" +msgstr "Yüksek öncelik" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" -msgstr "" +msgstr "En yüksek öncelik" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" -msgstr "" +msgstr "IPSet Bilgileri" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:45 msgid "IPSet Query" -msgstr "" +msgstr "IPSet Sorgusu" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." -msgstr "" +msgstr "IPSet Sorgusu..." #: applications/luci-app-banip/luasrc/controller/banip.lua:8 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:27 msgid "IPSet Report" -msgstr "" +msgstr "IPSet Raporu" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" -msgstr "" +msgstr "IPSet ayrıntıları" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" -msgstr "" +msgstr "IPv4 Desteği" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" -msgstr "" +msgstr "IPv6 Desteği" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" -msgstr "" +msgstr "Bilgi" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" -msgstr "" +msgstr "LAN Yönlendirme" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" -msgstr "" +msgstr "LAN Girişi" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "Son çalışma zamanı" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" -msgstr "" +msgstr "En Az Öncelik" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" -msgstr "" +msgstr "Daha Az Öncelik" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." -msgstr "" +msgstr "E-posta tetikleyicisini belirli banIP eylemleriyle sınırlandırın." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." -msgstr "" +msgstr "Günlük izleyicisini belirli günlük terimleriyle sınırlayın." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "Seçimi belirli yerel kaynaklarla sınırlayın." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" -msgstr "" +msgstr "Kaldırılacak satırın numarası" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." -msgstr "" +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:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" +"Desteklenen ve tam olarak önceden yapılandırılmış indirme yardımcı " +"programlarının listesi." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "Yerel Kaynaklar" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" -msgstr "" +msgstr "Günlük Sınırı" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" -msgstr "" +msgstr "Günlük İzleme" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" -msgstr "" +msgstr "Günlük Şartları" #: applications/luci-app-banip/luasrc/controller/banip.lua:12 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:59 msgid "Log View" -msgstr "" +msgstr "Günlük Kayıtlarını Göster" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." -msgstr "" +msgstr "Şüpheli gelen paketleri günlüğe kaydedin - genellikle bırakılan." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +"Şüpheli giden paketleri günlüğe kaydedin - genellikle reddedilen. Bu tür " +"paketlerin günlüğe kaydedilmesi, ek sistem kaynakları gerektirmesi nedeniyle " +"gecikmede artışa neden olabilir." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "LuCI Günlük Sayısı" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "Maclist Zaman Aşımı" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +"Maclist değişiklikleri kaydedildi. Değişikliklerin etkili olacağı banIP " +"listelerinizi yenileyin." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "NGINX Günlük Sayısı" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" -msgstr "" +msgstr "Ad" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" -msgstr "" +msgstr "Ağ arayüzleri" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:88 msgid "No Query results!" -msgstr "" +msgstr "Sorgu sonuçları yok!" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/logread.js:21 msgid "No banIP related logs yet!" -msgstr "" +msgstr "Henüz banIP ile ilgili günlük yok!" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" -msgstr "" +msgstr "Normal Öncelik (varsayılan)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" -msgstr "" +msgstr "CIDR girdilerinin sayısı" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" -msgstr "" +msgstr "IP girdilerinin sayısı" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" -msgstr "" +msgstr "MAC girdilerinin sayısı" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" -msgstr "" +msgstr "Erişilen girdilerin sayısı" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" -msgstr "" +msgstr "Tüm IPSetlerin sayısı" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" +msgstr "Tüm girdilerin sayısı" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" +"Yasaklamadan önce günlükteki aynı ip'in başarısız LuCI oturum açma " +"tekrarlarının sayısı." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" +"Yasaklamadan önce günlükteki aynı ip'in başarısız nginx isteklerinin sayısı." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." msgstr "" +"Yasaklamadan önce günlükteki aynı ip'in başarısız ssh giriş isteklerinin " +"sayısı." #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "Genel bakış" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" +"Şüpheli olaylar için yalnızca son belirtilen günlük girişi sayısını " +"ayrıştırın." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." -msgstr "" +msgstr "BanIP bildirim e-postaları için 'msmtp' tarafından kullanılan profil." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:96 msgid "Query" -msgstr "" +msgstr "Sorgu" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." -msgstr "" +msgstr "BanIP bildirim e-postaları için alıcı adresi." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "Yenile" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:15 msgid "Refresh Timer" -msgstr "" +msgstr "Zamanlayıcıyı Yenile" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." -msgstr "" +msgstr "Zamanlayıcıyı Yenile .." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:62 msgid "Remove an existing job" -msgstr "" +msgstr "Mevcut bir işi kaldırın" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" -msgstr "" +msgstr "Rapor Dizini" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" +msgstr "Yeniden başlat" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." msgstr "" +"İnternet erişimini az sayıda güvenli web sitesine / IP'ye sınırlayın ve " +"internetin geri kalanına / sitelerine erişimi engelleyin." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" -msgstr "" +msgstr "Sonuç" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" -msgstr "" +msgstr "Bayrakları Çalıştır" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" -msgstr "" +msgstr "Çalıştırma Bilgileri" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" -msgstr "" +msgstr "SRC IPSet Türü" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" -msgstr "" +msgstr "SRC Günlük Seçenekleri" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" -msgstr "" +msgstr "SRC Hedefi" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" -msgstr "" +msgstr "SRC+DST IPSet Türü" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "SSH Günlük Sayısı" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 @@ -531,145 +654,182 @@ msgid "" "Search the active banIP-related IPSets for a specific IP, CIDR or MAC " "address." msgstr "" +"Belirli bir IP, CIDR veya MAC adresi için aktif banIP ile ilgili IPSetlerde " +"arama yapın." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." -msgstr "" +msgstr "İlgili ağ arayüzlerini manuel olarak seçin." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" +"BanIP ile ilgili bildirim e-postaları gönderin. Bu, ek 'msmtp' paketinin " +"kurulumunu gerektirir." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." -msgstr "" +msgstr "BanIP bildirim e-postaları için gönderen adresi." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" -msgstr "" +msgstr "Hizmet Önceliği" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "Set a new banIP job" -msgstr "" +msgstr "Yeni bir banIP işi ayarlayın" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" +"Yalnızca giden paketleri engellemek için IPset başına ayrı DST türünü " +"ayarlayın." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" +"Yalnızca gelen paketleri engellemek için IPset başına ayrı SRC tipini " +"ayarlayın." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" +"Gelen ve giden paketleri engellemek için IPset başına ayrı SRC + DST tipini " +"ayarlayın." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" +"Özel DST günlüğü seçeneklerini ayarlayın, ör. bir sınır oranı ayarlamak için." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" +"Özel SRC günlük seçeneklerini ayarlayın, örn. bir sınır oranı ayarlamak için." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "IPSet zaman aşımını Kara listesini ayarlayın." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." -msgstr "" +msgstr "DST ile ilgili tüm kurallar için güvenlik duvarı hedefini ayarlayın." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." -msgstr "" +msgstr "SRC ile ilgili tüm kurallar için güvenlik duvarı hedefini ayarlayın." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" +"Gelen (SRC) ve / veya giden (DST) paketleri engellemek için genel IPset türü " +"varsayılanını ayarlayın." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." +msgstr "Maclist IPSet zaman aşımını ayarlayın." + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "Beyaz liste IPSet zaman aşımını ayarlayın." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 msgid "Settings" -msgstr "" +msgstr "Ayarlar" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." -msgstr "" +msgstr "Paralel olarak indirme işlemi için indirme kuyruğunun boyutu." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" -msgstr "" +msgstr "Kaynaklar (Bilgi)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." -msgstr "" +msgstr "Seçilen indirme yardımcı programı için özel yapılandırma seçenekleri." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" +"Şüpheli SSH / LuCI oturum açma girişimlerini engellemek için arka planda " +"küçük bir günlük izleyicisi başlatır." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" -msgstr "" +msgstr "Başlangıç Tetikleme Arayüzü" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" -msgstr "" +msgstr "Durum / Sürüm" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" -msgstr "" +msgstr "Askıya al" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." -msgstr "" +msgstr "IPSet ile ilgili rapor dosyaları için hedef dizin." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." -msgstr "" +msgstr "Sıkıştırılmış kaynak listesi yedeklemeleri için hedef dizin." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:87 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:96 msgid "The Refresh Timer could not been updated." -msgstr "" +msgstr "Yenileme Zamanlayıcısı güncellenemedi." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:89 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:98 msgid "The Refresh Timer has been updated." -msgstr "" +msgstr "Yenileme Zamanlayıcısı güncellendi." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:57 msgid "The day of the week (opt., values: 1-7 possibly sep. by , or -)" -msgstr "" +msgstr "Haftanın günü (ops., Değerler: 1-7 muhtemelen or - ile ayrılmış)" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:47 msgid "The hours portition (req., range: 0-23)" -msgstr "" +msgstr "Saat bölümü (gerekli, aralık: 0-23)" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:52 msgid "The minutes portion (opt., range: 0-59)" -msgstr "" +msgstr "Dakika bölümü (isteğe bağlı, aralık: 0-59)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." msgstr "" +"Seçilen öncelik, banIP arkaplan işlemesi için kullanılacaktır. Bu " +"değişikliğin etkili olması için banIP hizmetinin tamamen yeniden " +"başlatılması gerekir." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/logread.js:28 msgid "The syslog output, pre-filtered for banIP related messages only." msgstr "" +"Yalnızca banIP ile ilgili mesajlar için önceden filtrelenmiş syslog çıktısı." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" +"Bu, belirli IP / CIDR adreslerini her zaman reddeden yerel banIP kara " +"listesidir. <br /> <em> <b> Lütfen unutmayın: </b> </em> satır başına " +"yalnızca bir IPv4 adresi, IPv6 adresi veya etki alanı adı ekleyin . '#' İle " +"tanıtılan yorumlara izin verilir - joker karakterlere ve normal ifadelere " +"izin verilmez." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 msgid "" @@ -677,66 +837,87 @@ msgid "" "<em><b>Please note:</b></em> add only one MAC address per line. Comments " "introduced with '#' are allowed - domains, wildcards and regex are not." msgstr "" +"Bu, belirli MAC adreslerine her zaman izin veren yerel banIP mac listesidir. " +"<br /> <em> <b> Lütfen unutmayın: </b> </em> satır başına yalnızca bir MAC " +"adresi ekleyin. \"#\" İle tanıtılan yorumlara izin verilir - etki alanları, " +"joker karakterler ve normal ifadelere izin verilmez." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" +"Bu, belirli IP / CIDR adreslerine her zaman izin veren yerel banIP beyaz " +"listesidir. <br /> <em> <b> Lütfen unutmayın: </b> </em> satır başına " +"yalnızca bir IPv4 adresi, IPv6 adresi veya etki alanı adı ekleyin. '#' İle " +"tanıtılan yorumlara izin verilir - joker karakterlere ve normal ifadelere " +"izin verilmez." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" +"Bu sekme, oluşturulan son IPSet Raporunu gösterir, güncel olanı almak için " +"'Yenile' düğmesine basın." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" -msgstr "" +msgstr "Zaman damgası" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:16 msgid "" "To keep your banIP lists up-to-date, you should setup an automatic update " "job for these lists." msgstr "" +"BanIP listelerinizi güncel tutmak için, bu listeler için otomatik bir " +"güncelleme görevi ayarlamalısınız." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." -msgstr "" +msgstr "BanIP bildirim e-postaları için konu." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" -msgstr "" +msgstr "Tetikleme Gecikmesi" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:119 msgid "Type" -msgstr "" +msgstr "Tür" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:17 msgid "Unable to save changes: %s" -msgstr "" +msgstr "Değişiklikler kaydedilemiyor: %s" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" -msgstr "" +msgstr "Ayrıntılı Hata Ayıklama Günlüğü" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" -msgstr "" +msgstr "WAN Yönlendirme" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" -msgstr "" +msgstr "WAN Girişi" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:11 msgid "Whitelist IP/CIDR" -msgstr "" +msgstr "Beyaz Liste IP / CIDR" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "Yalnızca Beyaz Liste" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "Beyaz Liste Zaman Aşımı" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 @@ -744,19 +925,21 @@ msgid "" "Whitelist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" +"Beyaz liste değişiklikleri kaydedildi. Değişikliklerin etkili olacağı banIP " +"listelerinizi yenileyin." -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." -msgstr "" +msgstr "Beyaz liste..." #: applications/luci-app-banip/luasrc/controller/banip.lua:6 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:3 msgid "banIP" -msgstr "" +msgstr "banIP" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:41 msgid "banIP action" -msgstr "" +msgstr "banIP eylemi" #~ msgid "Advanced" #~ msgstr "Gelişmiş" diff --git a/applications/luci-app-banip/po/uk/banip.po b/applications/luci-app-banip/po/uk/banip.po index 1c80aa5a34..a116ba9aae 100644 --- a/applications/luci-app-banip/po/uk/banip.po +++ b/applications/luci-app-banip/po/uk/banip.po @@ -1,7 +1,7 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-10-12 12:00+0000\n" -"Last-Translator: Sergey Kovalets <sergeykovalets@gmail.com>\n" +"PO-Revision-Date: 2021-05-14 02:32+0000\n" +"Last-Translator: Никита Сластихин <slastikhin.nikita@gmail.com>\n" "Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsbanip/uk/>\n" "Language: uk\n" @@ -9,14 +9,44 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.3-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" msgstr "" @@ -24,92 +54,101 @@ msgstr "" msgid "Action" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" msgstr "" @@ -117,9 +156,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:73 msgid "Cancel" -msgstr "" +msgstr "Скасувати" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -147,81 +186,81 @@ msgstr "" msgid "Count SUM" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" msgstr "" @@ -240,31 +279,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "Редагувати білий список" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." msgstr "" @@ -276,11 +315,15 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 -msgid "General Settings" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 +msgid "General Settings" +msgstr "Загальні налаштування" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" msgstr "" @@ -288,15 +331,15 @@ msgstr "" msgid "Grant access to LuCI app banIP" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "" @@ -304,7 +347,7 @@ msgstr "" msgid "IPSet Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." msgstr "" @@ -313,73 +356,81 @@ msgstr "" msgid "IPSet Report" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" @@ -388,27 +439,39 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" msgstr "" @@ -420,44 +483,61 @@ msgstr "" msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "Огляд" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" @@ -465,12 +545,12 @@ msgstr "" msgid "Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "Оновити" @@ -478,7 +558,7 @@ msgstr "Оновити" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." msgstr "" @@ -486,42 +566,52 @@ msgstr "" msgid "Remove an existing job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" @@ -533,21 +623,21 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "" @@ -555,80 +645,92 @@ msgstr "" msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 -msgid "Settings" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 +msgid "Settings" +msgstr "Налаштування" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" @@ -654,7 +756,7 @@ msgstr "" msgid "The minutes portion (opt., range: 0-59)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -667,9 +769,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -682,18 +784,18 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" msgstr "" @@ -703,11 +805,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "" @@ -721,17 +823,17 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -739,6 +841,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -746,7 +856,7 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." msgstr "" diff --git a/applications/luci-app-banip/po/vi/banip.po b/applications/luci-app-banip/po/vi/banip.po index 35efea28f8..48cec8721d 100644 --- a/applications/luci-app-banip/po/vi/banip.po +++ b/applications/luci-app-banip/po/vi/banip.po @@ -10,12 +10,42 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.10-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" msgstr "" @@ -23,92 +53,101 @@ msgstr "" msgid "Action" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "Thư mục sao lưu" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" msgstr "" @@ -118,7 +157,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -146,81 +185,81 @@ msgstr "" msgid "Count SUM" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" msgstr "" @@ -239,31 +278,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." msgstr "" @@ -275,11 +314,15 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" msgstr "" @@ -287,15 +330,15 @@ msgstr "" msgid "Grant access to LuCI app banIP" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "" @@ -303,7 +346,7 @@ msgstr "" msgid "IPSet Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." msgstr "" @@ -312,73 +355,81 @@ msgstr "" msgid "IPSet Report" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" @@ -387,27 +438,39 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" msgstr "" @@ -419,44 +482,61 @@ msgstr "" msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" @@ -464,12 +544,12 @@ msgstr "" msgid "Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "" @@ -477,7 +557,7 @@ msgstr "" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." msgstr "" @@ -485,42 +565,52 @@ msgstr "" msgid "Remove an existing job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" @@ -532,21 +622,21 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "" @@ -554,80 +644,92 @@ msgstr "" msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 msgid "Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" @@ -653,7 +755,7 @@ msgstr "" msgid "The minutes portion (opt., range: 0-59)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -666,9 +768,9 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -681,18 +783,18 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" msgstr "" @@ -702,11 +804,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "Kích hoạt độ trễ" @@ -720,18 +822,18 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 #, fuzzy msgid "Verbose Debug Logging" msgstr "Nhật ký gỡ lỗi khởi động" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -739,6 +841,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -746,7 +856,7 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." msgstr "" diff --git a/applications/luci-app-banip/po/zh_Hans/banip.po b/applications/luci-app-banip/po/zh_Hans/banip.po index 6c3dca5826..7bacd8f396 100644 --- a/applications/luci-app-banip/po/zh_Hans/banip.po +++ b/applications/luci-app-banip/po/zh_Hans/banip.po @@ -1,114 +1,153 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-02-05 14:57+0000\n" -"Last-Translator: zheshifandian <sunjiazheng321521@gmail.com>\n" +"PO-Revision-Date: 2021-04-23 07:01+0000\n" +"Last-Translator: Eric <spice2wolf@gmail.com>\n" "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsbanip/zh_Hans/>\n" "Language: zh_Hans\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.5-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" -msgstr "" +msgstr "-m limit --limit 2/sec(默认)" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "1 小时" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "12 小时" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "24 小时" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "30 分钟" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "6 小时" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" -msgstr "" +msgstr "平均取样数" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:127 msgid "Action" -msgstr "开始" +msgstr "操作" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" -msgstr "" +msgstr "活动设备" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" -msgstr "" +msgstr "活动接口" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" -msgstr "" +msgstr "活动日志项" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" -msgstr "" +msgstr "活动源" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" -msgstr "" +msgstr "活动子网" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." +msgstr "额外的与非 banIP 相关的 IPSets,例如:用于报告和查询。" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." -msgstr "" +msgstr "将此 IP/CIDR 添加到您的本地白名单。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" -msgstr "" +msgstr "额外设置" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "banIP 处理开始之前的额外触发延迟(以秒为单位)。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" -msgstr "" +msgstr "高级设置 - 链" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" -msgstr "高级设置-邮箱" +msgstr "高级设置 - 邮箱" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" -msgstr "高级设置-日志" +msgstr "高级设置 - 日志" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" msgstr "自动 黑名单" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" -msgstr "" +msgstr "自动检测" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" msgstr "自动 白名单" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." -msgstr "" +msgstr "运行时自动将可疑 IP 从日志转移到 banIP 黑名单。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." -msgstr "" +msgstr "运行时自动将上行链路 IP 转移到 banIP 白名单。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" -msgstr "备份文件夹" +msgstr "备份目录" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" -msgstr "基本缓存文件夹" +msgstr "基础临时目录" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." -msgstr "" +msgstr "用于所有与 banIP 相关运行时操作的基础临时目录。" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "超时黑名单" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." -msgstr "" +msgstr "黑名单更改已经保存。刷新您的 banIP 列表以使更改生效。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" msgstr "阻止列表内容" @@ -116,113 +155,116 @@ msgstr "阻止列表内容" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:73 msgid "Cancel" -msgstr "关闭" +msgstr "取消" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" "master/net/banip/files/README.md\" target=\"_blank\" rel=\"noreferrer " "noopener\" >check the online documentation</a>" msgstr "" +"通过 IPSet 拦截 IP 地址/子网的 banIP 包的配置。更多信息请<a href=\"https://" +"github.com/openwrt/packages/blob/master/net/banip/files/README.md\" target=" +"\"_blank\" rel=\"noreferrer noopener\" >查看在线文档</a>" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:124 msgid "Count ACC" -msgstr "" +msgstr "ACC 统计" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:122 msgid "Count CIDR" -msgstr "" +msgstr "CIDR 统计" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:121 msgid "Count IP" -msgstr "" +msgstr "IP 统计" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:123 msgid "Count MAC" -msgstr "" +msgstr "MAC 统计" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:120 msgid "Count SUM" -msgstr "" +msgstr "SUM 统计" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" -msgstr "" +msgstr "地区" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" -msgstr "" +msgstr "DST IPSet 类型" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" -msgstr "" +msgstr "DST 日志选项" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" -msgstr "" +msgstr "DST 目标" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" -msgstr "" +msgstr "banIP 默认使用的链是 “forwarding_lan_rule”" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" -msgstr "" +msgstr "banIP 默认使用的链是 “forwarding_wan_rule”" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" -msgstr "" +msgstr "banIP 默认使用的链是 “input_lan_rule”" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" -msgstr "" +msgstr "banIP 默认使用的链是 “input_wan_rule”" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." -msgstr "" +msgstr "自动检测相关的网络接口、设备、子网和协议。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" -msgstr "" +msgstr "下载参数" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" -msgstr "" +msgstr "下载队列" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "下载工具" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" -msgstr "" +msgstr "电子邮件操作" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" -msgstr "" +msgstr "电子邮件通知" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" -msgstr "" +msgstr "电子邮件概要" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" -msgstr "" +msgstr "电子邮件收件人地址" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" -msgstr "" +msgstr "电子邮件发件人地址" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" -msgstr "" +msgstr "电子邮件主题" #: applications/luci-app-banip/luasrc/controller/banip.lua:9 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:35 @@ -232,294 +274,348 @@ msgstr "编辑黑名单" #: applications/luci-app-banip/luasrc/controller/banip.lua:11 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 msgid "Edit Maclist" -msgstr "" +msgstr "编辑 Mac 地址列表" #: applications/luci-app-banip/luasrc/controller/banip.lua:10 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:43 msgid "Edit Whitelist" msgstr "编辑白名单" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" -msgstr "" +msgstr "启用 DST 记录" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" -msgstr "" +msgstr "启用 SRC 记录" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." -msgstr "" +msgstr "启用 banIP 服务。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." -msgstr "" +msgstr "在出现任何处理错误时启用详细的调试日志。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" -msgstr "" +msgstr "已启用" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." -msgstr "" +msgstr "在 banIP 中启用 IPv4 支持。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." -msgstr "" +msgstr "在 banIP 中启用 IPv6 支持。" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:125 msgid "Entry Details" -msgstr "" +msgstr "条目详情" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:18 msgid "Existing job(s)" -msgstr "" +msgstr "现有任务" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" +msgstr "附加源" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 msgid "General Settings" -msgstr "" +msgstr "常规设置" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" -msgstr "" +msgstr "全局 IPSet 类型" #: applications/luci-app-banip/root/usr/share/rpcd/acl.d/luci-app-banip.json:3 msgid "Grant access to LuCI app banIP" -msgstr "" +msgstr "授予访问 LuCI 应用 banIP 的权限" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" -msgstr "" +msgstr "较高优先级" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" -msgstr "" +msgstr "最高优先级" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "IPSet 信息" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:45 msgid "IPSet Query" -msgstr "" +msgstr "IPSet 查询" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." -msgstr "" +msgstr "IPSet 查询..." #: applications/luci-app-banip/luasrc/controller/banip.lua:8 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:27 msgid "IPSet Report" -msgstr "" +msgstr "IPSet 报告" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" -msgstr "" +msgstr "IPSet 详情" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" -msgstr "" +msgstr "IPv4 支持" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" -msgstr "" +msgstr "IPv6 支持" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" -msgstr "" +msgstr "信息" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" -msgstr "" +msgstr "局域网转发" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" -msgstr "" +msgstr "局域网入站" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "最后运行" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" -msgstr "" +msgstr "最低优先级" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" -msgstr "" +msgstr "较低优先级" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." -msgstr "" +msgstr "限制仅特定 banIP 操作会触发电子邮件发送。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." -msgstr "" +msgstr "将日志监视器限制为特定的日志项。" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "将选择限制在特定的本地源。" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" -msgstr "" +msgstr "要移除的行号" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." -msgstr "" +msgstr "触发 banIP 启动的可用网络接口列表。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." -msgstr "" +msgstr "支持和完全预配置的下载实用程序列表。" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "本地源" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" -msgstr "" +msgstr "日志限制" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" -msgstr "" +msgstr "日志监视器" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" -msgstr "" +msgstr "日志项" #: applications/luci-app-banip/luasrc/controller/banip.lua:12 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:59 msgid "Log View" -msgstr "" +msgstr "日志视图" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." -msgstr "" +msgstr "记录可疑的传入数据包 - 通常是被丢弃的。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +"记录可疑的传出数据包 - 通常是被拒绝的。由于需要额外的系统资源,记录这样的数据" +"包可能会导致延迟增加。" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "LuCI 日志计数" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "MAC 列表超时" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." -msgstr "" +msgstr "MAC 列表更改已经保存。刷新您的 banIP 列表以使更改生效。" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "NGINX 日志计数" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" -msgstr "" +msgstr "名称" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" -msgstr "" +msgstr "网络接口" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:88 msgid "No Query results!" -msgstr "" +msgstr "无查询结果!" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/logread.js:21 msgid "No banIP related logs yet!" -msgstr "" +msgstr "尚无 banIP 相关的日志!" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" -msgstr "" +msgstr "正常优先级(默认)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" -msgstr "" +msgstr "CIDR 条目数" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" -msgstr "" +msgstr "IP 条目数" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" -msgstr "" +msgstr "MAC 条目数" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" -msgstr "" +msgstr "访问的条目数" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" -msgstr "" +msgstr "全部 IPSet 条目数" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" -msgstr "" +msgstr "全部条目数" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "在被封禁前,日志中同一 IP 登录 LuCI 失败的记录次数。" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "在被封禁前,日志中同一 IP 请求 nginx 失败的记录次数。" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "在被封禁前,日志中同一 IP 登录 SSH 失败的记录次数。" #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "概览" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." -msgstr "" +msgstr "仅解析最后声明的可疑事件的日志条目数量。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." -msgstr "" +msgstr "“msmtp”所用的 banIP 电子邮件通知配置。" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:96 msgid "Query" -msgstr "" +msgstr "查询" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." -msgstr "" +msgstr "banIP 通知电子邮件的接收者地址。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "刷新" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:15 msgid "Refresh Timer" -msgstr "" +msgstr "定时恢复" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." -msgstr "" +msgstr "定时恢复中..." #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:62 msgid "Remove an existing job" -msgstr "" +msgstr "移除一个现有任务" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" -msgstr "" +msgstr "报告目录" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" +msgstr "重启" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." msgstr "" +"限制来自/到少数安全网站/IP的互联网访问,拦截来自/到互联网其余部分的访问。" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" -msgstr "" +msgstr "结果" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" -msgstr "" +msgstr "运行标记" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" -msgstr "" +msgstr "运行信息" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" -msgstr "" +msgstr "SRC IPSet 类型" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" -msgstr "" +msgstr "SRC 日志选项" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" -msgstr "" +msgstr "SRC 目标" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" -msgstr "" +msgstr "SRC+DST IPSet 类型" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "SSH 日志计数" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 @@ -530,146 +626,163 @@ msgstr "保存" msgid "" "Search the active banIP-related IPSets for a specific IP, CIDR or MAC " "address." -msgstr "" +msgstr "搜索特定 IP、CIDR 或 MAC 地址的活动的 banIP 相关 IPSet。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." -msgstr "" +msgstr "手动选择相关的网络接口。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." -msgstr "" +msgstr "发送 banIP 相关的通知邮件。这需要安装和设置额外的“msmtp”包。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." -msgstr "" +msgstr "banIP 通知邮件的发送地址。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" -msgstr "" +msgstr "服务优先级" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:29 msgid "Set a new banIP job" -msgstr "" +msgstr "配置一个新的 banIP 任务" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." -msgstr "" +msgstr "为每一 IPSet 设置单独的 DST 类型来仅拦截传出数据包。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." -msgstr "" +msgstr "为每一 IPSet 设置单独的 SRC 类型来仅拦截传入数据包。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." -msgstr "" +msgstr "为每一 IPSet 设置单独的 SRC+DST 类型来拦截传入和传出数据包。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." -msgstr "" +msgstr "设定特殊的 DST 日志选项,如设置一个限制率。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." -msgstr "" +msgstr "设置特殊的 SRC 日志选项,如设置一个限制率。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "设置黑名单 IPSet 超时。" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." -msgstr "" +msgstr "设置所有 DST 相关规则的防火墙目标。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." -msgstr "" +msgstr "设置所有 SRC 相关规则的防火墙目标。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." -msgstr "" +msgstr "设置全局 IPSet 类型默认值,以拦截传入(SRC)和/或传出(DST)数据包。" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." +msgstr "设置 MAC 列表 IPSet 超时。" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "设置白名单 IPSet 超时。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 msgid "Settings" -msgstr "" +msgstr "设置" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." -msgstr "" +msgstr "用于并行下载处理的下载队列大小。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" -msgstr "" +msgstr "源(信息)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." -msgstr "" +msgstr "所选下载工具的特殊配置选项。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." -msgstr "" +msgstr "在后台启动一个小日志监视器,阻止可疑的 SSH/LuCI 登录尝试。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" -msgstr "" +msgstr "启动触发接口" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" -msgstr "" +msgstr "状态 / 版本" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" -msgstr "" +msgstr "暂停" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." -msgstr "" +msgstr "IPSet 相关的报告文件的目标目录。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." -msgstr "" +msgstr "压缩的源列表备份的目标目录。" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:87 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:96 msgid "The Refresh Timer could not been updated." -msgstr "" +msgstr "无法更新刷新计时器。" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:89 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:98 msgid "The Refresh Timer has been updated." -msgstr "" +msgstr "刷新计时器已更新。" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:57 msgid "The day of the week (opt., values: 1-7 possibly sep. by , or -)" -msgstr "" +msgstr "星期几(可选。取值范围:1-7,可用 , 或 - 分隔)" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:47 msgid "The hours portition (req., range: 0-23)" -msgstr "" +msgstr "小时(必须。取值范围:0-23)" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:52 msgid "The minutes portion (opt., range: 0-59)" -msgstr "" +msgstr "分钟(可选。取值范围:0-59)" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." msgstr "" +"所选的优先级将用于 banIP 后台处理。此更改需要重新启动整个 banIP 服务才能生" +"效。" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/logread.js:28 msgid "The syslog output, pre-filtered for banIP related messages only." -msgstr "syslog 输出,仅针对 banIP 相关消息进行了预过滤。" +msgstr "系统日志输出,仅针对 banIP 相关的消息进行了预筛选。" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" +"这是本地 banIP 黑名单,用于始终拒绝某些 IP/CIDR 地址。<br /> <em><b>请注意:" +"</b></em>每行仅添加一个 IPv4 地址、IPv6 地址或域名。注释以“#”开头。不允许使" +"用通配符和正则表达式。" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 msgid "" @@ -677,86 +790,135 @@ msgid "" "<em><b>Please note:</b></em> add only one MAC address per line. Comments " "introduced with '#' are allowed - domains, wildcards and regex are not." msgstr "" +"这是本地 banIP MAC 列表,用于始终允许某些 MAC 地址。<br /> <em><b>请注意:</" +"b></em>每行只添加一个MAC地址。注释以“#”开头。不允许使用域名、通配符和正则表" +"达式。" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" +"这是本地 banIP 白名单,用于始终允许某些 IP/CIDR 地址。<br /> <em><b>请注意:" +"</b></em>每行仅添加一个 IPv4 地址、IPv6 地址或域名。注释以“#”开头。不允许使" +"用通配符和正则表达式。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." -msgstr "" +msgstr "该选项卡显示了上一次生成的 IPSet 报告,点击“刷新”按钮可获得当前报告。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" -msgstr "" +msgstr "时间戳" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:16 msgid "" "To keep your banIP lists up-to-date, you should setup an automatic update " "job for these lists." -msgstr "" +msgstr "为了使您的 banIP 列表保持最新,您应该为这些列表设置一个自动更新任务。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." -msgstr "" +msgstr "banIP 通知邮件的主题。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" -msgstr "触发延迟" +msgstr "触发延时" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:119 msgid "Type" -msgstr "" +msgstr "类型" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:17 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:17 msgid "Unable to save changes: %s" -msgstr "" +msgstr "无法保存更改:%s" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "详细的调试记录" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" -msgstr "" +msgstr "广域网转发" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" -msgstr "" +msgstr "广域网入站" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:11 msgid "Whitelist IP/CIDR" -msgstr "" +msgstr "白名单 IP/CIDR" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "仅白名单" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "白名单超时" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" "Whitelist changes have been saved. Refresh your banIP lists that changes " "take effect." -msgstr "" +msgstr "白名单更改已经保存。刷新您的 banIP 列表以使更改生效。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." -msgstr "" +msgstr "白名单..." #: applications/luci-app-banip/luasrc/controller/banip.lua:6 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:3 msgid "banIP" -msgstr "禁止IP" +msgstr "banIP" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:41 msgid "banIP action" -msgstr "" +msgstr "banIP 操作" + +#~ msgid "" +#~ "This is the local banIP blacklist to always-deny certain IP/CIDR " +#~ "addresses.<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 " +#~ "address per line. Comments introduced with '#' are allowed - domains, " +#~ "wildcards and regex are not." +#~ msgstr "" +#~ "这是用于本地总是拒绝某些 IP/CIDR 地址的banIP黑名单.<br /> <em><b>请注意:</" +#~ "b></em>每行只能添加一个IPv4或IPv6地址.允许使用 '#' 引入注释 - 域, 通配符和" +#~ "正则表达式不允许." + +#~ msgid "" +#~ "This is the local banIP whitelist to always allow certain IP/CIDR " +#~ "addresses.<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 " +#~ "address or per line. Comments introduced with '#' are allowed - domains, " +#~ "wildcards and regex are not." +#~ msgstr "" +#~ "这是本地banIP白名单总是允许某些 IP/CIDR 地址.<br /> <em><b>请注意:</b></" +#~ "em>仅添加每行一个IPv4或IPv6地址.允许使用 '#' 引入注释 - 域, 通配符和正则表" +#~ "达式不允许." + +#~ msgid "" +#~ "Number of the failed LuCI login repetitions of the same ip in the log " +#~ "before banning." +#~ msgstr "禁止前日志中同一 ip 的 LuCI 登录失败的重复次数。" + +#~ msgid "" +#~ "Number of the failed nginx requests of the same ip in the log before " +#~ "banning." +#~ msgstr "禁止前日志中相同 ip 的 nginx 请求失败的次数。" + +#~ msgid "" +#~ "Number of the failed ssh login repetitions of the same ip in the log " +#~ "before banning." +#~ msgstr "禁止前日志中相同 ip 的 ssh 登录失败重复次数。" #~ msgid "ASN Overview" #~ msgstr "ASN 概述" diff --git a/applications/luci-app-banip/po/zh_Hant/banip.po b/applications/luci-app-banip/po/zh_Hant/banip.po index 8b6bc46e16..ffb68fd31b 100644 --- a/applications/luci-app-banip/po/zh_Hant/banip.po +++ b/applications/luci-app-banip/po/zh_Hant/banip.po @@ -1,124 +1,163 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-01-25 09:27+0000\n" -"Last-Translator: akibou <jinwenxin1997@icloud.com>\n" +"PO-Revision-Date: 2021-04-13 11:51+0000\n" +"Last-Translator: LGA1150 <dqfext@gmail.com>\n" "Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsbanip/zh_Hant/>\n" "Language: zh_Hant\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.5-dev\n" +"X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:669 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:705 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 msgid "-m limit --limit 2/sec (default)" -msgstr "" +msgstr "-m limit --limit 2/秒 (預設)" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505 +msgid "1 hour" +msgstr "1 小時" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +msgid "12 hours" +msgstr "12 小時" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 +msgid "24 hours" +msgstr "24 小時" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:495 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:504 +msgid "30 minutes" +msgstr "30 分鐘" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:497 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:506 +msgid "6 hours" +msgstr "6 小時" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:784 msgid "ASNs" -msgstr "" +msgstr "平均取樣數" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:127 msgid "Action" -msgstr "" +msgstr "動作" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 msgid "Active Devices" -msgstr "" +msgstr "使用中的裝置" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:294 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 msgid "Active Interfaces" -msgstr "" +msgstr "使用中的介面" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Active Logterms" -msgstr "" +msgstr "動作日誌項目" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:286 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Active Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:302 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:288 msgid "Active Subnets" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "" +"Add additional, non-banIP related IPSets e.g. for reporting and queries." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:12 msgid "Add this IP/CIDR to your local whitelist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 msgid "Additional Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Additional trigger delay in seconds before banIP processing begins." msgstr "附加觸發 banIP 行程開始延遲的秒數。" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:358 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Advanced Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 msgid "Advanced E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:359 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Advanced Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "Auto Blacklist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "Auto Whitelist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:805 msgid "" "Automatically transfers suspicious IPs from the log to the banIP blacklist " "during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:760 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:808 msgid "" "Automatically transfers uplink IPs to the banIP whitelist during runtime." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Backup Directory" msgstr "備份目錄" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Base Temp Directory used for all banIP related runtime operations." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Blacklist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:15 msgid "" "Blacklist changes have been saved. Refresh your banIP lists that changes " "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Blocklist Sources" -msgstr "" +msgstr "封鎖清單來源" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:22 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:73 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:73 msgid "Cancel" -msgstr "" +msgstr "取消" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:157 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:139 msgid "" "Configuration of the banIP package to block ip adresses/subnets via IPSet. " "For further information <a href=\"https://github.com/openwrt/packages/blob/" @@ -146,81 +185,81 @@ msgstr "" msgid "Count SUM" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:771 msgid "Countries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "DST IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "DST Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "DST Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "Default chain used by banIP is 'forwarding_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "Default chain used by banIP is 'forwarding_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "Default chain used by banIP is 'input_lan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "Default chain used by banIP is 'input_wan_rule'" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:374 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360 msgid "" "Detect relevant network interfaces, devices, subnets and protocols " "automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Download Parameters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Download Queue" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "Download Utility" msgstr "下載工具" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "E-Mail Actions" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "E-Mail Profile" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "E-Mail Topic" msgstr "" @@ -239,31 +278,31 @@ msgstr "" msgid "Edit Whitelist" msgstr "編輯白名單" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "Enable DST logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Enable SRC logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enable the banIP service." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Enable verbose debug logging in case of any processing errors." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352 msgid "Enabled" -msgstr "" +msgstr "啟用" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "Enables IPv4 support in banIP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Enables IPv6 support in banIP." msgstr "" @@ -275,11 +314,15 @@ msgstr "" msgid "Existing job(s)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 -msgid "General Settings" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:800 +msgid "Extra Sources" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 +msgid "General Settings" +msgstr "一般設定" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "Global IPSet Type" msgstr "" @@ -287,15 +330,15 @@ msgstr "" msgid "Grant access to LuCI app banIP" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:423 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "High Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:422 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 msgid "Highest Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:282 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:268 msgid "IPSet Information" msgstr "IPSet信息" @@ -303,7 +346,7 @@ msgstr "IPSet信息" msgid "IPSet Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:213 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:212 msgid "IPSet Query..." msgstr "" @@ -312,73 +355,81 @@ msgstr "" msgid "IPSet Report" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:236 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:235 msgid "IPSet details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:371 msgid "IPv4 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "IPv6 Support" -msgstr "" +msgstr "支援 IPv6" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:564 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 msgid "LAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621 msgid "LAN Input" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:314 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 msgid "Last Run" msgstr "最後執行" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:426 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:416 msgid "Least Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415 msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:698 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734 msgid "Limit E-Mail trigger to certain banIP actions." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Limit the log monitor to certain log terms." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Limit the selection to certain local sources." +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:66 msgid "Line number to remove" -msgstr "" +msgstr "要移除的行號" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "List of available network interfaces to trigger the banIP start." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:457 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 msgid "List of supported and fully pre-configured download utilities." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 +msgid "Local Sources" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Log Limit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "Log Monitor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:659 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679 msgid "Log Terms" msgstr "" @@ -387,27 +438,39 @@ msgstr "" msgid "Log View" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 msgid "Log suspicious incoming packets - usually dropped." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:387 msgid "" "Log suspicious outgoing packets - usually rejected. Logging such packets may " "cause an increase in latency due to it requiring additional system resources." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "LuCI Log Count" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Maclist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:15 msgid "" "Maclist changes have been saved. Refresh your banIP lists that changes take " "effect." msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "NGINX Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:118 msgid "Name" -msgstr "" +msgstr "名稱" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Network Interfaces" msgstr "" @@ -419,44 +482,61 @@ msgstr "" msgid "No banIP related logs yet!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:414 msgid "Normal Priority (default)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:196 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:195 msgid "Number of CIDR entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:192 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:191 msgid "Number of IP entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:200 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:199 msgid "Number of MAC entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:204 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:203 msgid "Number of accessed entries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:184 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:183 msgid "Number of all IPSets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:188 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:187 msgid "Number of all entries" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 +msgid "" +"Number of failed LuCI login repetitions of the same ip in the log before " +"banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697 +msgid "" +"Number of failed nginx requests of the same ip in the log before banning." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "" +"Number of failed ssh login repetitions of the same ip in the log before " +"banning." +msgstr "" + #: applications/luci-app-banip/luasrc/controller/banip.lua:7 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:19 msgid "Overview" msgstr "概覽" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672 msgid "Parse only the last stated number of log entries for suspicious events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:693 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" @@ -464,12 +544,12 @@ msgstr "" msgid "Query" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:409 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:399 msgid "Receiver address for banIP notification e-mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:230 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:229 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324 msgid "Refresh" msgstr "重新整理" @@ -477,50 +557,60 @@ msgstr "重新整理" msgid "Refresh Timer" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:309 msgid "Refresh Timer..." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:62 msgid "Remove an existing job" -msgstr "" +msgstr "移除一個現存工作" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Report Directory" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 msgid "Restart" +msgstr "重新啟動" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "" +"Restrict the internet access from/to a small number of secure websites/IPs " +"and block access from/to the rest of the internet." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:60 msgid "Result" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:310 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 msgid "Run Flags" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:292 msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "SRC IPSet Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "SRC Log Options" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "SRC Target" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "SRC+DST IPSet Type" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:687 +msgid "SSH Log Count" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:38 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:107 msgid "Save" @@ -532,21 +622,21 @@ msgid "" "address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:377 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:363 msgid "Select the relevant network interfaces manually." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 msgid "" "Send banIP related notification e-mails. This needs the installation and " "setup of the additional 'msmtp' package." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:721 msgid "Sender address for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "Service Priority" msgstr "" @@ -554,80 +644,92 @@ msgstr "" msgid "Set a new banIP job" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:513 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529 msgid "Set individual DST type per IPset to block only outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:517 msgid "Set individual SRC type per IPset to block only incoming packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:523 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 msgid "" "Set individual SRC+DST type per IPset to block incoming and outgoing packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 msgid "Set special DST log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:666 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Set special SRC log options, e.g. to set a limit rate." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:486 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:503 +msgid "Set the blacklist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476 msgid "Set the firewall target for all DST related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471 msgid "Set the firewall target for all SRC related rules." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:475 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 msgid "" "Set the global IPset type default, to block incoming (SRC) and/or outgoing " "(DST) packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:354 -msgid "Settings" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485 +msgid "Set the maclist IPSet timeout." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Set the whitelist IPSet timeout." +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340 +msgid "Settings" +msgstr "設定" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425 msgid "Size of the download queue for download processing in parallel." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:748 msgid "Sources (Info)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "Special config options for the selected download utility." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:395 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 msgid "" "Starts a small log monitor in the background to block suspicious SSH/LuCI " "login attempts." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 msgid "Startup Trigger Interface" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:278 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Status / Version" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Suspend" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443 msgid "Target directory for IPSet related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439 msgid "Target directory for compressed source list backups." msgstr "" @@ -653,7 +755,7 @@ msgstr "" msgid "The minutes portion (opt., range: 0-59)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 msgid "" "The selected priority will be used for banIP background processing. This " "change requires a full banIP service restart to take effect." @@ -666,9 +768,9 @@ msgstr "系統日誌輸出,僅針對banIP相關消息進行了預過濾。" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blacklist.js:23 msgid "" "This is the local banIP blacklist to always-deny certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/maclist.js:23 @@ -681,18 +783,18 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:23 msgid "" "This is the local banIP whitelist to always allow certain IP/CIDR addresses." -"<br /> <em><b>Please note:</b></em> add only one IPv4 or IPv6 address or per " -"line. Comments introduced with '#' are allowed - domains, wildcards and " -"regex are not." +"<br /> <em><b>Please note:</b></em> add only one IPv4 address, IPv6 address " +"or domain name per line. Comments introduced with '#' are allowed - " +"wildcards and regex are not." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:177 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:176 msgid "" "This tab shows the last generated IPSet Report, press the 'Refresh' button " "to get a current one." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:180 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:179 msgid "Timestamp" msgstr "" @@ -702,11 +804,11 @@ msgid "" "job for these lists." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:689 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:420 msgid "Trigger Delay" msgstr "觸發延遲" @@ -720,17 +822,17 @@ msgstr "" msgid "Unable to save changes: %s" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:417 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407 msgid "Verbose Debug Logging" msgstr "詳細除錯日誌" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:586 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654 msgid "WAN Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:643 msgid "WAN Input" msgstr "" @@ -738,6 +840,14 @@ msgstr "" msgid "Whitelist IP/CIDR" msgstr "" +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391 +msgid "Whitelist Only" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +msgid "Whitelist Timeout" +msgstr "" + #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:33 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/whitelist.js:15 msgid "" @@ -745,7 +855,7 @@ msgid "" "take effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:153 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/ipsetreport.js:152 msgid "Whitelist..." msgstr "" |