diff options
Diffstat (limited to 'applications')
4 files changed, 243 insertions, 240 deletions
diff --git a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js index 2dc085932d..731ef9beb6 100644 --- a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js +++ b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js @@ -258,7 +258,7 @@ return view.extend({ return handleEdit('download'); }) }, [_('Download Custom Feeds')]), - '\xa0\xa0\xa0', + '\xa0', E('button', { 'class': 'btn cbi-button cbi-button-action', 'id': 'btnUpload', @@ -267,7 +267,7 @@ return view.extend({ return handleEdit('upload'); }) }, [_('Upload Custom Feeds')]), - '\xa0\xa0\xa0\xa0\xa0\xa0', + '\xa0', E('button', { 'class': 'btn cbi-button cbi-button-action important', 'id': 'btnCreate', @@ -276,7 +276,7 @@ return view.extend({ return handleEdit('create'); }) }, [_('Fill Custom Feeds')]), - '\xa0\xa0\xa0', + '\xa0', E('button', { 'class': 'btn cbi-button cbi-button-negative important', 'id': 'btnClear', @@ -285,7 +285,7 @@ return view.extend({ return handleEdit('clear'); }) }, [_('Clear Custom Feeds')]), - '\xa0\xa0\xa0', + '\xa0', E('button', { 'class': 'btn cbi-button cbi-button-positive important', 'id': 'btnSave', @@ -293,7 +293,8 @@ return view.extend({ 'click': ui.createHandlerFn(this, function () { return handleEdit('save'); }) - }, [_('Save Custom Feeds')]) + }, [_('Save Custom Feeds')]), + '\xa0' ]) }); return m.render(); 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 81543ca732..021fc10d90 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 @@ -162,48 +162,48 @@ return view.extend({ return E('div', { 'class': 'cbi-section' }, [ E('h3', _('Information')), E('div', { 'class': 'cbi-value' }, [ - E('label', { 'class': 'cbi-value-title', 'style': 'margin-bottom:-5px;float:left;font-weight:bold;padding-top:0rem;' }, _('Status')), - E('div', { 'class': 'cbi-value-field spinning', 'id': 'status', 'style': 'margin-bottom:-5px;float:left;color:#37c;font-weight:bold;' }, '\xa0') + E('label', { 'class': 'cbi-value-title', 'style': 'margin-bottom:-5px;font-weight:bold;padding-top:0rem;' }, _('Status')), + E('div', { 'class': 'cbi-value-field spinning', 'id': 'status', 'style': 'margin-bottom:-5px;color:#37c;font-weight:bold;' }, '\xa0') ]), E('div', { 'class': 'cbi-value' }, [ - E('label', { 'class': 'cbi-value-title', 'style': 'margin-bottom:-5px;float:left;font-weight:bold;padding-top:0rem;' }, _('Version')), - E('div', { 'class': 'cbi-value-field', 'id': 'version', 'style': 'margin-bottom:-5px;float:left;color:#37c;font-weight:bold;' }, '-') + E('label', { 'class': 'cbi-value-title', 'style': 'margin-bottom:-5px;font-weight:bold;padding-top:0rem;' }, _('Version')), + E('div', { 'class': 'cbi-value-field', 'id': 'version', 'style': 'margin-bottom:-5px;color:#37c;font-weight:bold;' }, '-') ]), E('div', { 'class': 'cbi-value' }, [ - E('label', { 'class': 'cbi-value-title', 'style': 'margin-bottom:-5px;float:left;font-weight:bold;padding-top:0rem;' }, _('Element Count')), - E('div', { 'class': 'cbi-value-field', 'id': 'elements', 'style': 'margin-bottom:-5px;float:left;color:#37c;font-weight:bold;' }, '-') + E('label', { 'class': 'cbi-value-title', 'style': 'margin-bottom:-5px;font-weight:bold;padding-top:0rem;' }, _('Element Count')), + E('div', { 'class': 'cbi-value-field', 'id': 'elements', 'style': 'margin-bottom:-5px;color:#37c;font-weight:bold;' }, '-') ]), E('div', { 'class': 'cbi-value' }, [ - E('label', { 'class': 'cbi-value-title', 'style': 'margin-bottom:-5px;float:left;font-weight:bold;padding-top:0rem;' }, _('Active Feeds')), - E('div', { 'class': 'cbi-value-field', 'id': 'feeds', 'style': 'margin-bottom:-5px;float:left;color:#37c;font-weight:bold;' }, '-') + E('label', { 'class': 'cbi-value-title', 'style': 'margin-bottom:-5px;font-weight:bold;padding-top:0rem;' }, _('Active Feeds')), + E('div', { 'class': 'cbi-value-field', 'id': 'feeds', 'style': 'margin-bottom:-5px;color:#37c;font-weight:bold;' }, '-') ]), E('div', { 'class': 'cbi-value' }, [ - E('label', { 'class': 'cbi-value-title', 'style': 'margin-bottom:-5px;float:left;font-weight:bold;padding-top:0rem;' }, _('Active Devices')), - E('div', { 'class': 'cbi-value-field', 'id': 'devices', 'style': 'margin-bottom:-5px;float:left;color:#37c;font-weight:bold;' }, '-') + E('label', { 'class': 'cbi-value-title', 'style': 'margin-bottom:-5px;font-weight:bold;padding-top:0rem;' }, _('Active Devices')), + E('div', { 'class': 'cbi-value-field', 'id': 'devices', 'style': 'margin-bottom:-5px;color:#37c;font-weight:bold;' }, '-') ]), E('div', { 'class': 'cbi-value' }, [ - E('label', { 'class': 'cbi-value-title', 'style': 'margin-bottom:-5px;float:left;font-weight:bold;padding-top:0rem;' }, _('Active Uplink')), - E('div', { 'class': 'cbi-value-field', 'id': 'uplink', 'style': 'margin-bottom:-5px;float:left;color:#37c;font-weight:bold;' }, '-') + E('label', { 'class': 'cbi-value-title', 'style': 'margin-bottom:-5px;font-weight:bold;padding-top:0rem;' }, _('Active Uplink')), + E('div', { 'class': 'cbi-value-field', 'id': 'uplink', 'style': 'margin-bottom:-5px;color:#37c;font-weight:bold;' }, '-') ]), E('div', { 'class': 'cbi-value' }, [ - E('label', { 'class': 'cbi-value-title', 'style': 'margin-bottom:-5px;float:left;font-weight:bold;padding-top:0rem;' }, _('NFT Information')), - E('div', { 'class': 'cbi-value-field', 'id': 'nft', 'style': 'margin-bottom:-5px;float:left;color:#37c;font-weight:bold;' }, '-') + E('label', { 'class': 'cbi-value-title', 'style': 'margin-bottom:-5px;font-weight:bold;padding-top:0rem;' }, _('NFT Information')), + E('div', { 'class': 'cbi-value-field', 'id': 'nft', 'style': 'margin-bottom:-5px;color:#37c;font-weight:bold;' }, '-') ]), E('div', { 'class': 'cbi-value' }, [ - E('label', { 'class': 'cbi-value-title', 'style': 'margin-bottom:-5px;float:left;font-weight:bold;padding-top:0rem;' }, _('Run Information')), - E('div', { 'class': 'cbi-value-field', 'id': 'run', 'style': 'margin-bottom:-5px;float:left;color:#37c;font-weight:bold;' }, '-') + E('label', { 'class': 'cbi-value-title', 'style': 'margin-bottom:-5px;font-weight:bold;padding-top:0rem;' }, _('Run Information')), + E('div', { 'class': 'cbi-value-field', 'id': 'run', 'style': 'margin-bottom:-5px;color:#37c;font-weight:bold;' }, '-') ]), E('div', { 'class': 'cbi-value' }, [ - E('label', { 'class': 'cbi-value-title', 'style': 'margin-bottom:-5px;float:left;font-weight:bold;padding-top:0rem;' }, _('Run Flags')), - E('div', { 'class': 'cbi-value-field', 'id': 'flags', 'style': 'margin-bottom:-5px;float:left;color:#37c;font-weight:bold;' }, '-') + E('label', { 'class': 'cbi-value-title', 'style': 'margin-bottom:-5px;font-weight:bold;padding-top:0rem;' }, _('Run Flags')), + E('div', { 'class': 'cbi-value-field', 'id': 'flags', 'style': 'margin-bottom:-5px;color:#37c;font-weight:bold;' }, '-') ]), E('div', { 'class': 'cbi-value' }, [ - E('label', { 'class': 'cbi-value-title', 'style': 'margin-bottom:-5px;float:left;font-weight:bold;padding-top:0rem;' }, _('Last Run')), - E('div', { 'class': 'cbi-value-field', 'id': 'last', 'style': 'margin-bottom:-5px;float:left;color:#37c;font-weight:bold;' }, '-') + E('label', { 'class': 'cbi-value-title', 'style': 'margin-bottom:-5px;font-weight:bold;padding-top:0rem;' }, _('Last Run')), + E('div', { 'class': 'cbi-value-field', 'id': 'last', 'style': 'margin-bottom:-5px;color:#37c;font-weight:bold;' }, '-') ]), E('div', { 'class': 'cbi-value' }, [ - E('label', { 'class': 'cbi-value-title', 'style': 'margin-bottom:-5px;float:left;font-weight:bold;padding-top:0rem;' }, _('System Information')), - E('div', { 'class': 'cbi-value-field', 'id': 'system', 'style': 'margin-bottom:-5px;float:left;color:#37c;font-weight:bold;' }, '-') + E('label', { 'class': 'cbi-value-title', 'style': 'margin-bottom:-5px;font-weight:bold;padding-top:0rem;' }, _('System Information')), + E('div', { 'class': 'cbi-value-field', 'id': 'system', 'style': 'margin-bottom:-5px;color:#37c;font-weight:bold;' }, '-') ]), E('div', { class: 'right' }, [ E('button', { @@ -212,27 +212,28 @@ return view.extend({ return handleAction('lookup'); }) }, [_('Domain Lookup')]), - '\xa0\xa0\xa0', + '\xa0', E('button', { 'class': 'btn cbi-button cbi-button-negative', 'click': ui.createHandlerFn(this, function () { return handleAction('stop'); }) }, [_('Stop')]), - '\xa0\xa0\xa0', + '\xa0', E('button', { 'class': 'btn cbi-button cbi-button-positive', 'click': ui.createHandlerFn(this, function () { return handleAction('reload'); }) }, [_('Reload')]), - '\xa0\xa0\xa0', + '\xa0', E('button', { 'class': 'btn cbi-button cbi-button-positive', 'click': ui.createHandlerFn(this, function () { return handleAction('restart'); }) - }, [_('Restart')]) + }, [_('Restart')]), + '\xa0' ]) ]); }, o, this); diff --git a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js index b938cbc46e..845e081e88 100644 --- a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js +++ b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js @@ -196,38 +196,38 @@ return view.extend({ E('p', _('This tab shows the last generated Set Report, press the \'Refresh\' button to get a new one.')), E('p', '\xa0'), E('div', { 'class': 'cbi-value' }, [ - E('div', { 'class': 'cbi-value-title', 'style': 'margin-bottom:-5px;float:left;width:230px;font-weight:bold;' }, _('Timestamp')), - E('div', { 'class': 'cbi-value-title', 'id': 'start', 'style': 'margin-bottom:-5px;float:left;color:#37c;font-weight:bold;' }, content.timestamp || '-') + E('div', { 'class': 'cbi-value-title', 'style': 'margin-bottom:-5px;width:230px;font-weight:bold;' }, _('Timestamp')), + E('div', { 'class': 'cbi-value-title', 'id': 'start', 'style': 'margin-bottom:-5px;color:#37c;font-weight:bold;' }, content.timestamp || '-') ]), E('hr'), E('div', { 'class': 'cbi-value' }, [ - E('div', { 'class': 'cbi-value-title', 'style': 'margin-top:-5px;float:left;width:230px;font-weight:bold;' }, _('blocked syn-flood packets')), - E('div', { 'class': 'cbi-value-title', 'id': 'start', 'style': 'margin-top:-5px;float:left;color:#37c;font-weight:bold;' }, content.sum_synflood || '-') + E('div', { 'class': 'cbi-value-title', 'style': 'margin-top:-5px;width:230px;font-weight:bold;' }, _('blocked syn-flood packets')), + E('div', { 'class': 'cbi-value-title', 'id': 'start', 'style': 'margin-top:-5px;color:#37c;font-weight:bold;' }, content.sum_synflood || '-') ]), E('div', { 'class': 'cbi-value' }, [ - E('div', { 'class': 'cbi-value-title', 'style': 'margin-top:-5px;float:left;width:230px;font-weight:bold;' }, _('blocked udp-flood packets')), - E('div', { 'class': 'cbi-value-title', 'id': 'start', 'style': 'margin-top:-5px;float:left;color:#37c;font-weight:bold;' }, content.sum_udpflood || '-') + E('div', { 'class': 'cbi-value-title', 'style': 'margin-top:-5px;width:230px;font-weight:bold;' }, _('blocked udp-flood packets')), + E('div', { 'class': 'cbi-value-title', 'id': 'start', 'style': 'margin-top:-5px;color:#37c;font-weight:bold;' }, content.sum_udpflood || '-') ]), E('div', { 'class': 'cbi-value' }, [ - E('div', { 'class': 'cbi-value-title', 'style': 'margin-top:-5px;float:left;width:230px;font-weight:bold;' }, _('blocked icmp-flood packets')), - E('div', { 'class': 'cbi-value-title', 'id': 'start', 'style': 'margin-top:-5px;float:left;color:#37c;font-weight:bold;' }, content.sum_icmpflood || '-') + E('div', { 'class': 'cbi-value-title', 'style': 'margin-top:-5px;width:230px;font-weight:bold;' }, _('blocked icmp-flood packets')), + E('div', { 'class': 'cbi-value-title', 'id': 'start', 'style': 'margin-top:-5px;color:#37c;font-weight:bold;' }, content.sum_icmpflood || '-') ]), E('div', { 'class': 'cbi-value' }, [ - E('div', { 'class': 'cbi-value-title', 'style': 'margin-top:-5px;float:left;width:230px;font-weight:bold;' }, _('blocked invalid ct packets')), - E('div', { 'class': 'cbi-value-title', 'id': 'start', 'style': 'margin-top:-5px;float:left;color:#37c;font-weight:bold;' }, content.sum_ctinvalid || '-') + E('div', { 'class': 'cbi-value-title', 'style': 'margin-top:-5px;width:230px;font-weight:bold;' }, _('blocked invalid ct packets')), + E('div', { 'class': 'cbi-value-title', 'id': 'start', 'style': 'margin-top:-5px;color:#37c;font-weight:bold;' }, content.sum_ctinvalid || '-') ]), E('div', { 'class': 'cbi-value' }, [ - E('div', { 'class': 'cbi-value-title', 'style': 'margin-top:-5px;float:left;width:230px;font-weight:bold;' }, _('blocked invalid tcp packets')), - E('div', { 'class': 'cbi-value-title', 'id': 'start', 'style': 'margin-top:-5px;float:left;color:#37c;font-weight:bold;' }, content.sum_tcpinvalid || '-') + E('div', { 'class': 'cbi-value-title', 'style': 'margin-top:-5px;width:230px;font-weight:bold;' }, _('blocked invalid tcp packets')), + E('div', { 'class': 'cbi-value-title', 'id': 'start', 'style': 'margin-top:-5px;color:#37c;font-weight:bold;' }, content.sum_tcpinvalid || '-') ]), E('hr'), E('div', { 'class': 'cbi-value' }, [ - E('div', { 'class': 'cbi-value-title', 'style': 'margin-top:-5px;float:left;width:230px;font-weight:bold;' }, _('auto-added IPs to allowlist')), - E('div', { 'class': 'cbi-value-title', 'id': 'start', 'style': 'margin-top:-5px;float:left;color:#37c;font-weight:bold;' }, content.autoadd_allow || '-') + E('div', { 'class': 'cbi-value-title', 'style': 'margin-top:-5px;width:230px;font-weight:bold;' }, _('auto-added IPs to allowlist')), + E('div', { 'class': 'cbi-value-title', 'id': 'start', 'style': 'margin-top:-5px;color:#37c;font-weight:bold;' }, content.autoadd_allow || '-') ]), E('div', { 'class': 'cbi-value' }, [ - E('div', { 'class': 'cbi-value-title', 'style': 'margin-top:-5px;float:left;width:230px;font-weight:bold;' }, _('auto-added IPs to blocklist')), - E('div', { 'class': 'cbi-value-title', 'id': 'start', 'style': 'margin-top:-5px;float:left;color:#37c;font-weight:bold;' }, content.autoadd_block || '-') + E('div', { 'class': 'cbi-value-title', 'style': 'margin-top:-5px;width:230px;font-weight:bold;' }, _('auto-added IPs to blocklist')), + E('div', { 'class': 'cbi-value-title', 'id': 'start', 'style': 'margin-top:-5px;color:#37c;font-weight:bold;' }, content.autoadd_block || '-') ]), E('div', { 'class': 'right' }, [ E('button', { @@ -236,20 +236,21 @@ return view.extend({ return handleAction(report, 'survey'); }) }, [_('Set Survey...')]), - '\xa0\xa0\xa0', + '\xa0', E('button', { 'class': 'btn cbi-button cbi-button-apply', 'click': ui.createHandlerFn(this, function () { return handleAction(report, 'search'); }) }, [_('IP Search...')]), - '\xa0\xa0\xa0', + '\xa0', E('button', { 'class': 'btn cbi-button cbi-button-positive', 'click': ui.createHandlerFn(this, function () { location.reload(); }) - }, [_('Refresh')]) + }, [_('Refresh')]), + '\xa0' ]), ]) , diff --git a/applications/luci-app-banip/po/templates/banip.pot b/applications/luci-app-banip/po/templates/banip.pot index feb0066e89..c67f09c827 100644 --- a/applications/luci-app-banip/po/templates/banip.pot +++ b/applications/luci-app-banip/po/templates/banip.pot @@ -5,34 +5,34 @@ msgstr "Content-Type: text/plain; charset=UTF-8" msgid "-- Set Selection --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:328 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350 -#: 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:419 -#: 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:463 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:579 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:608 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:768 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:329 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:362 +#: 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:450 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:494 +#: 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:580 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:769 msgid "-- default --" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:711 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712 msgid "AFRINIC - serving Africa and the Indian Ocean region" 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:713 msgid "APNIC - serving the Asia Pacific region" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:714 msgid "ARIN - serving Canada and the United States" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:719 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:720 msgid "ASNs" msgstr "" @@ -48,27 +48,27 @@ msgstr "" msgid "Active Uplink" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:316 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Additional trigger delay in seconds during interface reload and boot." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:247 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:248 msgid "Advanced Settings" 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:425 msgid "Allow Protocol/Ports" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:428 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 msgid "Allow VLAN Forwards" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:728 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729 msgid "Allowlist Feed URLs" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:792 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 msgid "Allowlist Only" msgstr "" @@ -78,83 +78,83 @@ msgid "" "effect." 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:425 msgid "" "Always allow a protocol (tcp/udp) with certain ports or port ranges in WAN-" "Input and WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:428 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429 msgid "Always allow certain VLAN forwards." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Always block certain VLAN forwards." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:762 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:763 msgid "Auto Allow Uplink" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:758 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759 msgid "Auto Allowlist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:777 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:778 msgid "Auto Block Subnet" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:773 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:774 msgid "Auto Blocklist" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:263 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "Auto Detection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:777 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:778 msgid "" "Automatically add entire subnets to the blocklist Set based on an additional " "RDAP request with the suspicious IP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:773 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:774 msgid "" "Automatically add resolved domains and suspicious IPs to the local banIP " "blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:758 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:759 msgid "" "Automatically add resolved domains and uplink IPs to the local banIP " "allowlist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 msgid "Backup Directory" 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:386 msgid "Base Directory" 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:386 msgid "Base working directory while banIP processing." msgstr "" -#: 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:499 msgid "Block Type" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:435 msgid "Block VLAN Forwards" msgstr "" -#: 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:678 msgid "Blocklist Feed" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:782 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:783 msgid "Blocklist Set Expiry" msgstr "" @@ -164,13 +164,13 @@ msgid "" "effect." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 msgid "" "By default each feed is active in all supported chains. Limit the default " "block policy to a certain chain." 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:367 msgid "CPU Cores" msgstr "" @@ -179,14 +179,14 @@ msgstr "" msgid "Cancel" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "Chain Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410 -#: 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:567 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411 +#: 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:568 msgid "Changes on this tab needs a banIP service restart to take effect." msgstr "" @@ -203,7 +203,7 @@ msgid "" "rel=\"noreferrer noopener\" >online documentation</a>" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:691 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:692 msgid "Countries" msgstr "" @@ -211,17 +211,17 @@ msgstr "" msgid "Custom Feed Editor" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:397 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 msgid "" "Deduplicate IP addresses across all active Sets and tidy up the local " "blocklist." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:397 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:398 msgid "Deduplicate IPs" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 msgid "Default Block Policy" msgstr "" @@ -229,13 +229,13 @@ msgstr "" msgid "Description" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:263 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:264 msgid "" "Detect relevant network devices, interfaces, subnets, protocols and " "utilities automatically." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:764 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:765 msgid "Disable" msgstr "" @@ -243,7 +243,7 @@ msgstr "" msgid "Domain Lookup" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334 msgid "Don't check SSL server certificates during download." msgstr "" @@ -251,49 +251,49 @@ msgstr "" msgid "Download Custom Feeds" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334 msgid "Download Insecure" 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:307 msgid "Download Parameters" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 msgid "Download Retries" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:297 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 msgid "Download Utility" msgstr "" -#: 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:499 msgid "" "Drop packets silently or actively reject the traffic on WAN-Input and WAN-" "Forward chains." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:649 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:650 msgid "E-Mail Notification" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:664 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:665 msgid "E-Mail Profile" 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:653 msgid "E-Mail Receiver Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:656 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:657 msgid "E-Mail Sender Address" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:252 msgid "E-Mail Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:660 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:661 msgid "E-Mail Topic" msgstr "" @@ -319,47 +319,47 @@ msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:633 msgid "Empty field not allowed" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:622 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 msgid "Enable Remote Logging" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:257 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:258 msgid "Enable the banIP service." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:622 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623 msgid "Enable the cgi interface to receive remote logging events." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:260 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:261 msgid "Enable verbose debug logging in case of processing errors." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:257 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:258 msgid "Enabled" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:266 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:267 msgid "Enables IPv4 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "Enables IPv6 support." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:782 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:783 msgid "Expiry time for auto added blocklist Set members." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:726 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:727 msgid "External Allowlist Feeds" 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:675 msgid "External Blocklist Feeds" msgstr "" @@ -367,11 +367,11 @@ msgstr "" msgid "Feed Name" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:252 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:253 msgid "Feed Selection" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:250 msgid "Feed/Set Settings" msgstr "" @@ -391,7 +391,7 @@ msgstr "" msgid "Flag not supported" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:247 msgid "General Settings" msgstr "" @@ -399,25 +399,25 @@ msgstr "" msgid "Grant access to LuCI app banIP" 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:346 msgid "High Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345 msgid "Highest Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:440 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:441 msgid "ICMP-Threshold" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:440 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:441 msgid "" "ICMP-Threshold in packets per second to prevent WAN-DDoS attacks. To disable " "this safeguard set it to '0'." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:766 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:767 msgid "IP" msgstr "" @@ -429,23 +429,23 @@ msgstr "" msgid "IP Search..." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:283 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "IPv4 Network Interfaces" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:266 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:267 msgid "IPv4 Support" 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:291 msgid "IPv6 Network Interfaces" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:272 msgid "IPv6 Support" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 msgid "" "Increase the maximal number of open files, e.g. to handle the amount of " "temporary split files while loading the Sets." @@ -456,7 +456,7 @@ msgid "Information" msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:635 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:636 msgid "Invalid characters" msgstr "" @@ -464,7 +464,7 @@ msgstr "" msgid "Invalid input values, unable to save modifications." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:714 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:715 msgid "LACNIC - serving the Latin American and Caribbean region" msgstr "" @@ -472,8 +472,8 @@ msgstr "" msgid "LAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:551 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:511 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:552 msgid "LAN-Forward Chain" msgstr "" @@ -481,41 +481,41 @@ msgstr "" msgid "Last Run" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:349 msgid "Least Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348 msgid "Less Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:551 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:552 msgid "Limit certain feeds to the LAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:542 msgid "Limit certain feeds to the WAN-Forward chain." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:532 msgid "Limit certain feeds to the WAN-Input chain." 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:367 msgid "Limit the cpu cores used by banIP to save RAM." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:762 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:763 msgid "Limit the uplink autoallow function." 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:402 msgid "" "List Set elements in the status and report, disable this to reduce the CPU " "load." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:311 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312 msgid "List of available reload trigger interface(s)." msgstr "" @@ -523,69 +523,69 @@ msgstr "" msgid "List the elements of a specific banIP-related Set." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:756 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:757 msgid "Local Feed Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:596 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:597 msgid "" "Location for parsing the log file, e.g. via syslog-ng, to deactivate the " "standard parsing via logread." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614 msgid "Log Count" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:593 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594 msgid "Log LAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 msgid "Log Limit" 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:585 msgid "Log Prerouting" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:250 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251 msgid "Log Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:618 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:619 msgid "Log Terms" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:591 msgid "Log WAN-Forward" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:587 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588 msgid "Log WAN-Input" 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:585 msgid "Log suspicious Prerouting packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:593 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:594 msgid "Log suspicious forwarded LAN packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:591 msgid "Log suspicious forwarded WAN packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:587 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:588 msgid "Log suspicious incoming WAN packets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:596 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:597 msgid "Logfile Location" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:356 msgid "Max Open Files" msgstr "" @@ -593,15 +593,15 @@ msgstr "" msgid "NFT Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:569 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:570 msgid "NFT Log Level" 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:277 msgid "Network Devices" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "Nice Level" msgstr "" @@ -610,22 +610,22 @@ msgstr "" msgid "No Search results!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347 msgid "Normal Priority" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 msgid "" "Number of download attempts in case of an error (not supported by uclient-" "fetch)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:614 msgid "" "Number of failed login attempts of the same IP in the log before blocking." 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:307 msgid "" "Override the pre-configured download options for the selected download " "utility." @@ -635,7 +635,7 @@ msgstr "" msgid "Overview" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601 msgid "" "Parse only the last stated number of log entries for suspicious events. To " "disable the log monitor at all set it to '0'." @@ -649,25 +649,25 @@ msgstr "" msgid "Processing Log" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:664 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:665 msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgstr "" #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:749 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:750 msgid "Protocol/URL format not supported" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:715 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:716 msgid "RIPE - serving Europe, Middle East and Central Asia" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:649 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:650 msgid "Receive E-Mail notifications with every banIP run." 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:653 msgid "" "Receiver address for banIP notification E-Mails, this information is " "required to enable E-Mail functionality." @@ -677,7 +677,7 @@ msgstr "" msgid "Refresh" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:711 msgid "Regional Internet Registry" msgstr "" @@ -685,19 +685,19 @@ msgstr "" msgid "Reload" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:311 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312 msgid "Reload Trigger Interface" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:627 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:628 msgid "Remote Token" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 msgid "Report Directory" 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:402 msgid "Report Elements" msgstr "" @@ -705,7 +705,7 @@ msgstr "" msgid "Restart" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:792 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:793 msgid "Restrict the internet access from/to a small number of secure IPs." msgstr "" @@ -730,11 +730,11 @@ msgstr "" msgid "Run Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "SYN-Threshold" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:455 msgid "" "SYN-Threshold in packets per second to prevent WAN-DDoS attacks. To disable " "this safeguard set it to '0'." @@ -752,23 +752,23 @@ msgstr "" msgid "Search the banIP-related Sets for a specific IP." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:297 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:298 msgid "Select one of the pre-configured download utilities." 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:277 msgid "Select the WAN network device(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:283 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284 msgid "Select the logical WAN IPv4 network interface(s)." 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:291 msgid "Select the logical WAN IPv6 network interface(s)." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:656 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:657 msgid "Sender address for banIP notification E-Mails." msgstr "" @@ -777,7 +777,7 @@ msgstr "" msgid "Set" 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:490 msgid "Set Policy" msgstr "" @@ -785,7 +785,7 @@ msgstr "" msgid "Set Reporting" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Set Split Size" msgstr "" @@ -797,29 +797,29 @@ msgstr "" msgid "Set Survey..." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:259 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:260 msgid "Set details" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:413 msgid "" "Set the nft chain priority within the banIP table, lower values means higher " "priority." 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:490 msgid "Set the nft policy for banIP-related Sets." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:569 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:570 msgid "Set the syslog level for NFT logging." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:244 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:245 msgid "Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376 msgid "Split external Set loading after every n members to save RAM." msgstr "" @@ -831,7 +831,7 @@ msgstr "" msgid "Stop" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:765 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:766 msgid "Subnet" msgstr "" @@ -843,15 +843,15 @@ msgstr "" msgid "System Information" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:248 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249 msgid "Table/Chain Settings" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394 msgid "Target directory for banIP-related report files." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390 msgid "Target directory for compressed feed backups." msgstr "" @@ -863,13 +863,13 @@ msgstr "" msgid "The blocklist is too big, unable to save modifications." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:618 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:619 msgid "" "The default regular expressions are filtering suspicious ssh, LuCI, nginx " "and asterisk traffic." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344 msgid "The selected priority will be used for banIP background processing." msgstr "" @@ -899,29 +899,29 @@ msgstr "" msgid "Timestamp" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:648 msgid "" "To enable email notifications, set up the 'msmtp' package and specify a " "vaild E-Mail receiver address." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:627 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:628 msgid "Token to communicate with the cgi interface." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:660 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:661 msgid "Topic for banIP notification E-Mails." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:316 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:317 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:468 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:469 msgid "UDP-Threshold" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:468 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:469 msgid "" "UDP-Threshold in packets per second to prevent WAN-DDoS attacks. To disable " "this safeguard set it to '0'." @@ -935,15 +935,15 @@ msgstr "" msgid "URLv6" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:702 msgid "Unable to parse the countries file!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:520 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521 msgid "Unable to parse the custom feed file!" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:528 msgid "Unable to parse the default feed file!" msgstr "" @@ -970,7 +970,7 @@ msgstr "" msgid "Upload of the custom feed file failed." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:260 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:261 msgid "Verbose Debug Logging" msgstr "" @@ -982,8 +982,8 @@ msgstr "" msgid "WAN-Forward (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:542 msgid "WAN-Forward Chain" msgstr "" @@ -991,8 +991,8 @@ msgstr "" msgid "WAN-Input (packets)" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:532 msgid "WAN-Input Chain" msgstr "" @@ -1005,7 +1005,7 @@ msgid "" "maintainers version just clear the custom feed file." msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:571 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:572 msgid "alert" msgstr "" @@ -1041,58 +1041,58 @@ msgstr "" msgid "blocked udp-flood packets" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:572 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573 msgid "crit" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:578 msgid "debug" msgstr "" -#: 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:500 msgid "drop" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:570 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:571 msgid "emerg" 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:574 msgid "err" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:576 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577 msgid "info" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:532 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:542 -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:552 -msgid "local allowlist" -msgstr "" - #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553 +msgid "local allowlist" +msgstr "" + +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:534 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:544 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:554 msgid "local blocklist" 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:491 msgid "memory" 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:576 msgid "notice" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:492 msgid "performance" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:501 msgid "reject" msgstr "" -#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:574 +#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575 msgid "warn" msgstr "" |