luci-app-banip: sync with banIP 0.8.2-2

Signed-off-by: Dirk Brenken <dev@brenken.org>
This commit is contained in:
Dirk Brenken 2023-03-10 19:49:14 +01:00
parent 24d7da2416
commit c7df6e7ea5
No known key found for this signature in database
GPG key ID: 9D71CD547BFAE684
37 changed files with 7058 additions and 4742 deletions

View file

@ -32,8 +32,8 @@ return view.extend({
/* /*
poll runtime information poll runtime information
*/ */
var rt_res, inf_stat, inf_version, inf_elements, inf_feeds, inf_feedarray, inf_devices, inf_devicearray, inf_interfaces, inf_interfacearray var rt_res, inf_stat, inf_version, inf_elements, inf_feeds, inf_feedarray, inf_devices, inf_devicearray
var inf_subnets, inf_subnetarray, inf_infos, inf_flags, inf_run, inf_system var inf_subnets, inf_subnetarray, nft_infos, run_infos, inf_flags, last_run, inf_system
pollData: poll.add(function () { pollData: poll.add(function () {
return L.resolveDefault(fs.read_direct('/var/run/banip_runtime.json'), 'null').then(function (res) { return L.resolveDefault(fs.read_direct('/var/run/banip_runtime.json'), 'null').then(function (res) {
@ -80,28 +80,28 @@ return view.extend({
} }
inf_devices = document.getElementById('devices'); inf_devices = document.getElementById('devices');
inf_devicearray = []; inf_devicearray = [];
if (inf_devices && rt_res) { if (inf_devices && rt_res && rt_res.active_devices.length > 1) {
for (var i = 0; i < rt_res.active_devices.length; i++) { for (var i = 0; i < rt_res.active_devices.length; i++) {
if (i < rt_res.active_devices.length - 1) { if (i === 0 && rt_res.active_devices[i].device && rt_res.active_devices[i+1].interface) {
inf_devicearray += rt_res.active_devices[i].device + ', '; inf_devicearray += rt_res.active_devices[i].device + ' ::: ' + rt_res.active_devices[i+1].interface;
} else { i++;
}
else if (i === 0) {
inf_devicearray += rt_res.active_devices[i].device inf_devicearray += rt_res.active_devices[i].device
} }
else if (i > 0 && rt_res.active_devices[i].device && rt_res.active_devices[i+1].interface) {
inf_devicearray += ', ' + rt_res.active_devices[i].device + ' ::: ' + rt_res.active_devices[i+1].interface;
i++;
}
else if (i > 0 && rt_res.active_devices[i].device) {
inf_devicearray += ', ' + rt_res.active_devices[i].device;
}
else if (i > 0 && rt_res.active_devices[i].interface) {
inf_devicearray += ', ' + rt_res.active_devices[i].interface;
}
} }
inf_devices.textContent = inf_devicearray || '-'; inf_devices.textContent = inf_devicearray || '-';
} }
inf_interfaces = document.getElementById('interfaces');
inf_interfacearray = [];
if (inf_interfaces && rt_res) {
for (var i = 0; i < rt_res.active_interfaces.length; i++) {
if (i < rt_res.active_interfaces.length - 1) {
inf_interfacearray += rt_res.active_interfaces[i].interface + ', ';
} else {
inf_interfacearray += rt_res.active_interfaces[i].interface
}
}
inf_interfaces.textContent = inf_interfacearray || '-';
}
inf_subnets = document.getElementById('subnets'); inf_subnets = document.getElementById('subnets');
inf_subnetarray = []; inf_subnetarray = [];
if (inf_subnets && rt_res) { if (inf_subnets && rt_res) {
@ -114,17 +114,21 @@ return view.extend({
} }
inf_subnets.textContent = inf_subnetarray || '-'; inf_subnets.textContent = inf_subnetarray || '-';
} }
inf_infos = document.getElementById('infos'); nft_infos = document.getElementById('nft');
if (inf_infos && rt_res) { if (nft_infos && rt_res) {
inf_infos.textContent = rt_res.run_info || '-'; nft_infos.textContent = rt_res.nft_info || '-';
}
run_infos = document.getElementById('run');
if (run_infos && rt_res) {
run_infos.textContent = rt_res.run_info || '-';
} }
inf_flags = document.getElementById('flags'); inf_flags = document.getElementById('flags');
if (inf_flags && rt_res) { if (inf_flags && rt_res) {
inf_flags.textContent = rt_res.run_flags || '-'; inf_flags.textContent = rt_res.run_flags || '-';
} }
inf_run = document.getElementById('run'); last_run = document.getElementById('last');
if (inf_run && rt_res) { if (last_run && rt_res) {
inf_run.textContent = rt_res.last_run || '-'; last_run.textContent = rt_res.last_run || '-';
} }
inf_system = document.getElementById('system'); inf_system = document.getElementById('system');
if (inf_system && rt_res) { if (inf_system && rt_res) {
@ -160,17 +164,17 @@ return view.extend({
E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Active Devices')), E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Active Devices')),
E('div', { 'class': 'cbi-value-field', 'id': 'devices', 'style': 'color:#37c' }, '-') E('div', { 'class': 'cbi-value-field', 'id': 'devices', 'style': 'color:#37c' }, '-')
]), ]),
E('div', { 'class': 'cbi-value' }, [
E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Active Interfaces')),
E('div', { 'class': 'cbi-value-field', 'id': 'interfaces', 'style': 'color:#37c' }, '-')
]),
E('div', { 'class': 'cbi-value' }, [ E('div', { 'class': 'cbi-value' }, [
E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Active Subnets')), E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Active Subnets')),
E('div', { 'class': 'cbi-value-field', 'id': 'subnets', 'style': 'color:#37c' }, '-') E('div', { 'class': 'cbi-value-field', 'id': 'subnets', 'style': 'color:#37c' }, '-')
]), ]),
E('div', { 'class': 'cbi-value' }, [
E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('NFT Information')),
E('div', { 'class': 'cbi-value-field', 'id': 'nft', 'style': 'color:#37c' }, '-')
]),
E('div', { 'class': 'cbi-value' }, [ E('div', { 'class': 'cbi-value' }, [
E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Run Information')), E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Run Information')),
E('div', { 'class': 'cbi-value-field', 'id': 'infos', 'style': 'color:#37c' }, '-') E('div', { 'class': 'cbi-value-field', 'id': 'run', 'style': 'color:#37c' }, '-')
]), ]),
E('div', { 'class': 'cbi-value' }, [ E('div', { 'class': 'cbi-value' }, [
E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Run Flags')), E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Run Flags')),
@ -178,7 +182,7 @@ return view.extend({
]), ]),
E('div', { 'class': 'cbi-value' }, [ E('div', { 'class': 'cbi-value' }, [
E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Last Run')), E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Last Run')),
E('div', { 'class': 'cbi-value-field', 'id': 'run', 'style': 'color:#37c' }, '-') E('div', { 'class': 'cbi-value-field', 'id': 'last', 'style': 'color:#37c' }, '-')
]), ]),
E('div', { 'class': 'cbi-value' }, [ E('div', { 'class': 'cbi-value' }, [
E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('System Information')), E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('System Information')),
@ -354,15 +358,15 @@ return view.extend({
o.placeholder = '/tmp'; o.placeholder = '/tmp';
o.rmempty = true; o.rmempty = true;
o = s.taboption('advanced', form.Value, 'ban_backupdir', _('Backup Directory'), _('Target directory for compressed source list backups.')); o = s.taboption('advanced', form.Value, 'ban_backupdir', _('Backup Directory'), _('Target directory for compressed feed backups.'));
o.placeholder = '/tmp/banIP-backup'; o.placeholder = '/tmp/banIP-backup';
o.rmempty = true; o.rmempty = true;
o = s.taboption('advanced', form.Value, 'ban_reportdir', _('Report Directory'), _('Target directory for IPSet related report files.')); o = s.taboption('advanced', form.Value, 'ban_reportdir', _('Report Directory'), _('Target directory for banIP-related report files.'));
o.placeholder = '/tmp/banIP-report'; o.placeholder = '/tmp/banIP-report';
o.rmempty = true; o.rmempty = true;
o = s.taboption('advanced', form.Flag, 'ban_reportelements', _('Report Elements'), _('List Set elements in the report, disable this to speed up the report significantly.')); o = s.taboption('advanced', form.Flag, 'ban_reportelements', _('Report Elements'), _('List Set elements in the status and report, disable this to reduce the CPU load.'));
o.default = 1 o.default = 1
o.optional = true; o.optional = true;
@ -376,6 +380,12 @@ return view.extend({
o.rawhtml = true; o.rawhtml = true;
o.default = '<em><b>Changes on this tab needs a banIP service restart to take effect.</b></em>'; o.default = '<em><b>Changes on this tab needs a banIP service restart to take effect.</b></em>';
o = s.taboption('adv_chain', form.ListValue, 'ban_nftpolicy', _('Set Policy'), _('Set the nft policy for banIP-related sets.'));
o.value('memory', _('memory (default)'));
o.value('performance', _('performance'));
o.optional = true;
o.rmempty = true;
o = s.taboption('adv_chain', form.ListValue, 'ban_nftpriority', _('Chain Priority'), _('Set the nft chain priority within the banIP table. Please note: lower values means higher priority.')); o = s.taboption('adv_chain', form.ListValue, 'ban_nftpriority', _('Chain Priority'), _('Set the nft chain priority within the banIP table. Please note: lower values means higher priority.'));
o.value('0', _('0')); o.value('0', _('0'));
o.value('-100', _('-100')); o.value('-100', _('-100'));
@ -430,6 +440,19 @@ return view.extend({
o.rawhtml = true; o.rawhtml = true;
o.default = '<em><b>Changes on this tab needs a banIP service restart to take effect.</b></em>'; o.default = '<em><b>Changes on this tab needs a banIP service restart to take effect.</b></em>';
o = s.taboption('adv_log', form.ListValue, 'ban_nftloglevel', _('Log Level'), _('Set the syslog level for NFT logging.'));
o.value('emerg', _('emerg'));
o.value('alert', _('alert'));
o.value('crit', _('crit'));
o.value('err', _('err'));
o.value('warn', _('warn (default)'));
o.value('notice', _('notice'));
o.value('info', _('info'));
o.value('debug', _('debug'));
o.value('audit', _('audit'));
o.optional = true;
o.rmempty = true;
o = s.taboption('adv_log', form.ListValue, 'ban_loglimit', _('Log Limit'), _('Parse only the last stated number of log entries for suspicious events.')); o = s.taboption('adv_log', form.ListValue, 'ban_loglimit', _('Log Limit'), _('Parse only the last stated number of log entries for suspicious events.'));
o.value('50', _('50')); o.value('50', _('50'));
o.value('100', _('100 (default)')); o.value('100', _('100 (default)'));

View file

@ -15,92 +15,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -110,43 +106,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "مجلد النسخ الاحتياطي" msgstr "مجلد النسخ الاحتياطي"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -156,7 +152,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -165,11 +161,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "إلغاء" msgstr "إلغاء"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -182,59 +178,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "تنزيل المعلمات" 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "تحميل الأداة" msgstr "تحميل الأداة"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "ملف تعريف البريد الإلكتروني" msgstr "ملف تعريف البريد الإلكتروني"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "عنوان مستقبل البريد الإلكتروني" msgstr "عنوان مستقبل البريد الإلكتروني"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "عنوان مرسل البريد الإلكتروني" msgstr "عنوان مرسل البريد الإلكتروني"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "موضوع البريد الإلكتروني" msgstr "موضوع البريد الإلكتروني"
@ -246,7 +242,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -254,31 +250,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "مفعل" msgstr "مفعل"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -286,7 +282,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "الاعدادات العامة" msgstr "الاعدادات العامة"
@ -294,11 +290,11 @@ msgstr "الاعدادات العامة"
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "" msgstr ""
@ -310,21 +306,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "معلومة" msgstr "معلومة"
@ -332,45 +328,45 @@ msgstr "معلومة"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -378,60 +374,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -448,16 +452,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -467,7 +471,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "نظرة عامة" msgstr "نظرة عامة"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -475,11 +479,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -489,23 +493,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "نعش الذاكرة" msgstr "نعش الذاكرة"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "" 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "دليل التقارير" msgstr "دليل التقارير"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "إعادة تشغيل" msgstr "إعادة تشغيل"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -514,11 +518,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "نتيجة" msgstr "نتيجة"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "تشغيل الإشارات" msgstr "تشغيل الإشارات"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "" msgstr ""
@ -530,23 +534,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -555,11 +559,15 @@ msgstr ""
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -575,29 +583,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "إعدادات" 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "بدء واجهة التشغيل" msgstr "بدء واجهة التشغيل"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -605,16 +621,16 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
@ -625,13 +641,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -669,11 +685,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "تأخير الزناد" msgstr "تأخير الزناد"
@ -682,11 +698,11 @@ msgstr "تأخير الزناد"
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "تسجيل مطول للتصحيح" msgstr "تسجيل مطول للتصحيح"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -694,7 +710,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -702,10 +718,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -718,6 +742,42 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Unable to save changes: %s" #~ msgid "Unable to save changes: %s"
#~ msgstr "تعذر حفظ التغييرات: s%" #~ msgstr "تعذر حفظ التغييرات: s%"

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "ASNs" msgstr "ASNs"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "Активни устройства" msgstr "Активни устройства"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr "Активен интерфейс"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "Активни събнети" msgstr "Активни събнети"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,43 +105,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Автоматично засичане" msgstr "Автоматично засичане"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Директоря за резервни копия" msgstr "Директоря за резервни копия"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -155,7 +151,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -164,11 +160,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Отмени" msgstr "Отмени"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -181,59 +177,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "Държави" msgstr "Държави"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
msgstr "Не проверявай SSL сертификати по време на сваляне." msgstr "Не проверявай SSL сертификати по време на сваляне."
#: 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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Сваляй несигурно" msgstr "Сваляй несигурно"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "Параметри за теглене" 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "E-Mail Профил" msgstr "E-Mail Профил"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "E-Mail Изпращач" msgstr "E-Mail Изпращач"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "E-Mail Тема" msgstr "E-Mail Тема"
@ -245,7 +241,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -253,31 +249,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "Включи banIP сервиз." msgstr "Включи banIP сервиз."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "Разрешен" msgstr "Разрешен"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -285,7 +281,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "Основни настройки" msgstr "Основни настройки"
@ -293,11 +289,11 @@ msgstr "Основни настройки"
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "" msgstr ""
@ -309,21 +305,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "Информация" msgstr "Информация"
@ -331,45 +327,45 @@ msgstr "Информация"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -377,60 +373,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -447,16 +451,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -466,7 +470,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -474,11 +478,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -488,23 +492,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "" 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -513,11 +517,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "" msgstr ""
@ -529,23 +533,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -554,11 +558,15 @@ msgstr ""
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -574,29 +582,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "" 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -604,16 +620,16 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
@ -624,13 +640,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -668,11 +684,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -681,11 +697,11 @@ msgstr ""
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -693,7 +709,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -701,10 +717,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -717,6 +741,45 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Active Interfaces"
#~ msgstr "Активен интерфейс"
#~ msgid "-m limit --limit 2/sec (default)" #~ msgid "-m limit --limit 2/sec (default)"
#~ msgstr "-m limit --limit 2/sec (по подразбиране)" #~ msgstr "-m limit --limit 2/sec (по подразбиране)"

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "চালু ডিভাইসগুলো" msgstr "চালু ডিভাইসগুলো"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr "চালু ইন্টারফেসগুলো"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "চালু সাবনেটগুলো" msgstr "চালু সাবনেটগুলো"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,43 +105,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -155,7 +151,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -164,11 +160,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "বাতিল করুন" msgstr "বাতিল করুন"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -181,59 +177,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -245,7 +241,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -253,31 +249,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "সক্রিয়" msgstr "সক্রিয়"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -285,7 +281,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "সাধারণ সেটিংস" msgstr "সাধারণ সেটিংস"
@ -293,11 +289,11 @@ msgstr "সাধারণ সেটিংস"
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "" msgstr ""
@ -309,21 +305,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "" msgstr ""
@ -331,45 +327,45 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -377,60 +373,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -447,16 +451,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -466,7 +470,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -474,11 +478,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -488,23 +492,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "" 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -513,11 +517,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "" msgstr ""
@ -529,23 +533,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -554,11 +558,15 @@ msgstr ""
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -574,29 +582,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "সেটিংস" 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -604,16 +620,16 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
@ -624,13 +640,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -668,11 +684,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -681,11 +697,11 @@ msgstr ""
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -693,7 +709,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -701,10 +717,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -717,6 +741,45 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Active Interfaces"
#~ msgstr "চালু ইন্টারফেসগুলো"
#~ msgid "1 hour" #~ msgid "1 hour"
#~ msgstr "১ ঘন্টা" #~ msgstr "১ ঘন্টা"

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,43 +105,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Directori de còpies de seguretat" msgstr "Directori de còpies de seguretat"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -155,7 +151,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -164,11 +160,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Cancel•lar" msgstr "Cancel•lar"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -181,59 +177,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "Paràmetres de descàrrega" msgstr "Paràmetres de descàrrega"
#: 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "Utilitat de baixades" msgstr "Utilitat de baixades"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "Adreça del destinatari de correu" msgstr "Adreça del destinatari de correu"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -245,7 +241,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -253,31 +249,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "Activat" msgstr "Activat"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -285,7 +281,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "Paràmetres generals" msgstr "Paràmetres generals"
@ -293,11 +289,11 @@ msgstr "Paràmetres generals"
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "" msgstr ""
@ -309,21 +305,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "Informació" msgstr "Informació"
@ -331,45 +327,45 @@ msgstr "Informació"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
msgstr "Darrera execució" msgstr "Darrera execució"
#: 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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -377,60 +373,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -447,16 +451,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -466,7 +470,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Visió de conjunt" msgstr "Visió de conjunt"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -474,11 +478,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -488,23 +492,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "Actualitza" msgstr "Actualitza"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "Torna a carregar" msgstr "Torna a carregar"
#: 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "Reiniciar" msgstr "Reiniciar"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -513,11 +517,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "" msgstr ""
@ -529,23 +533,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -554,11 +558,15 @@ msgstr ""
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -574,29 +582,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "Paràmetres" msgstr "Paràmetres"
#: 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -604,16 +620,16 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
@ -624,13 +640,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -668,11 +684,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -681,11 +697,11 @@ msgstr ""
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Enregistrament detallat de depuració" msgstr "Enregistrament detallat de depuració"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -693,7 +709,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -701,10 +717,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -717,6 +741,42 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Action" #~ msgid "Action"
#~ msgstr "Acció" #~ msgstr "Acció"

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,43 +105,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Záložní adresář" msgstr "Záložní adresář"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -155,7 +151,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -164,11 +160,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Zrušit" msgstr "Zrušit"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -181,59 +177,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "Nástroj pro stahování" msgstr "Nástroj pro stahování"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -245,7 +241,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -253,31 +249,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -285,7 +281,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
@ -293,11 +289,11 @@ msgstr ""
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "" msgstr ""
@ -309,21 +305,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "" msgstr ""
@ -331,45 +327,45 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
msgstr "Poslední spuštění" msgstr "Poslední spuště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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -377,60 +373,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -447,16 +451,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -466,7 +470,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Přehled" msgstr "Přehled"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -474,11 +478,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -488,23 +492,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "Aktualizovat" msgstr "Aktualizovat"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "Znovu načíst" msgstr "Znovu načíst"
#: 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -513,11 +517,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "" msgstr ""
@ -529,23 +533,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -554,11 +558,15 @@ msgstr ""
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -574,29 +582,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "Nastavení" msgstr "Nastavení"
#: 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -604,16 +620,16 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
@ -624,13 +640,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -668,11 +684,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Prodleva spuštění" msgstr "Prodleva spuštění"
@ -681,11 +697,11 @@ msgstr "Prodleva spuštění"
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Podrobné protokolování ladění" msgstr "Podrobné protokolování ladění"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -693,7 +709,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -701,10 +717,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -717,6 +741,42 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "banIP" msgstr "banIP"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "-m limit --limit 2/sec (default)" #~ msgid "-m limit --limit 2/sec (default)"
#~ msgstr "-m limit --limit 2/sec (výchozí)" #~ msgstr "-m limit --limit 2/sec (výchozí)"

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "ASN'er" msgstr "ASN'er"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "Aktive enheder" msgstr "Aktive enheder"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr "Aktive Interfaces"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "Aktive Subnets" msgstr "Aktive Subnets"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,43 +105,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Automatisk detektering" msgstr "Automatisk detektering"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Backup Mappe" msgstr "Backup Mappe"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -155,7 +151,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -164,11 +160,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Annuller" msgstr "Annuller"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -181,59 +177,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "Lande" msgstr "Lande"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
msgstr "Kontroller ikke SSL-servercertifikater under download." msgstr "Kontroller ikke SSL-servercertifikater under download."
#: 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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Download usikker" msgstr "Download usikker"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "Download parametre" msgstr "Download parametre"
#: 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "Download hjælpeprogram" msgstr "Download hjælpeprogram"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "E-mail profil" msgstr "E-mail profil"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "Modtagerens e-mailadresse" msgstr "Modtagerens e-mailadresse"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "E-mail afsenderadresse" msgstr "E-mail afsenderadresse"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "E-mail emne" msgstr "E-mail emne"
@ -245,7 +241,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -253,31 +249,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "Aktiver banIP-tjenesten." msgstr "Aktiver banIP-tjenesten."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "Aktiveret" msgstr "Aktiveret"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -285,7 +281,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "Generelle indstillinger" msgstr "Generelle indstillinger"
@ -293,11 +289,11 @@ msgstr "Generelle indstillinger"
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "Giv adgang til LuCI-app banIP" msgstr "Giv adgang til LuCI-app banIP"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "Høj prioritet" msgstr "Høj prioritet"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "Højeste prioritet" msgstr "Højeste prioritet"
@ -309,21 +305,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "IPv4-understøttelse" msgstr "IPv4-understøttelse"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "IPv6-understøttelse" msgstr "IPv6-understøttelse"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "Information" msgstr "Information"
@ -331,45 +327,45 @@ msgstr "Information"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
msgstr "Sidste kørsel" msgstr "Sidste kørsel"
#: 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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "Mindste prioritet" msgstr "Mindste prioritet"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "Mindre prioritet" msgstr "Mindre prioritet"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
"Liste over tilgængelige netværks interfaces til at trigger banIP start." "Liste over tilgængelige netværks interfaces til at trigger banIP start."
@ -378,60 +374,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "Loggrænse" msgstr "Loggrænse"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "Log Vilkår" msgstr "Log Vilkår"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "Netværks Interfaces" msgstr "Netværks Interfaces"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -448,16 +452,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "Normal prioritet (standard)" msgstr "Normal prioritet (standard)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -467,7 +471,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Oversigt" msgstr "Oversigt"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
"Analyser kun det sidste angivne antal logposter for mistænkelige hændelser." "Analyser kun det sidste angivne antal logposter for mistænkelige hændelser."
@ -476,11 +480,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "Profil, der anvendes af \"msmtp\" til banIP-meddelelses-e-mails." msgstr "Profil, der anvendes af \"msmtp\" til banIP-meddelelses-e-mails."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -490,23 +494,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "Opdater" msgstr "Opdater"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "" 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "Rapportmappe" msgstr "Rapportmappe"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "Genstart" msgstr "Genstart"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -515,11 +519,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Resultat" msgstr "Resultat"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "Kør flag" msgstr "Kør flag"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "Kør oplysninger" msgstr "Kør oplysninger"
@ -531,23 +535,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "Afsenderadresse for banIP-meddelelses-e-mails." msgstr "Afsenderadresse for banIP-meddelelses-e-mails."
@ -556,11 +560,15 @@ msgstr "Afsenderadresse for banIP-meddelelses-e-mails."
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -576,29 +584,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "Indstillinger" msgstr "Indstillinger"
#: 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "Interface for opstartstrigger" msgstr "Interface for opstartstrigger"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -606,17 +622,17 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "Målmappe for IPSet-relaterede rapportfiler." 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "Målmappe for komprimerede sikkerhedskopier af kildelister." msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
msgid "The allowlist is too big, unable to save modifications." msgid "The allowlist is too big, unable to save modifications."
@ -626,13 +642,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -670,11 +686,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "Tidsstempel" msgstr "Tidsstempel"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "Emne for banIP-meddelelses-e-mails." msgstr "Emne for banIP-meddelelses-e-mails."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Udløserforsinkelse" msgstr "Udløserforsinkelse"
@ -683,11 +699,11 @@ msgstr "Udløserforsinkelse"
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Verbose Debug Logning" msgstr "Verbose Debug Logning"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -695,7 +711,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -703,10 +719,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -719,6 +743,51 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "banIP" msgstr "banIP"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Active Interfaces"
#~ msgstr "Aktive Interfaces"
#~ msgid "Target directory for IPSet related report files."
#~ msgstr "Målmappe for IPSet-relaterede rapportfiler."
#~ msgid "Target directory for compressed source list backups."
#~ msgstr "Målmappe for komprimerede sikkerhedskopier af kildelister."
#~ msgid "" #~ msgid ""
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes " #~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
#~ "take effect." #~ "take effect."

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "Autonome Systemnummern" msgstr "Autonome Systemnummern"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "Aktive Geräte" msgstr "Aktive Geräte"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr "Aktive Schnittstellen"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "Aktive Subnetze" msgstr "Aktive Subnetze"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,43 +105,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Automatische Erkennung" msgstr "Automatische Erkennung"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Backupverzeichnis" msgstr "Backupverzeichnis"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -155,7 +151,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -164,11 +160,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Abbrechen" msgstr "Abbrechen"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -181,59 +177,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "Länder" msgstr "Länder"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
msgstr "Während des Downloads keine SSL-Serverzertifikate überprüfen." msgstr "Während des Downloads keine SSL-Serverzertifikate überprüfen."
#: 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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Unsicher herunterladen" msgstr "Unsicher herunterladen"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "Download Parameter" msgstr "Download Parameter"
#: 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "Download-Werkzeug" msgstr "Download-Werkzeug"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "E-Mail-Profil" msgstr "E-Mail-Profil"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "E-Mail Empfängeradresse" msgstr "E-Mail Empfängeradresse"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "E-Mail Absenderadresse" msgstr "E-Mail Absenderadresse"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "E-Mail-Thema" msgstr "E-Mail-Thema"
@ -245,7 +241,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -253,31 +249,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "Aktiviere den banIP-Service." msgstr "Aktiviere den banIP-Service."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "Aktiviert" msgstr "Aktiviert"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -285,7 +281,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "Allgemeine Einstellungen" msgstr "Allgemeine Einstellungen"
@ -293,11 +289,11 @@ msgstr "Allgemeine Einstellungen"
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "Zugriff auf LuCI-App banIP gewähren" msgstr "Zugriff auf LuCI-App banIP gewähren"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "Hohe Priorität" msgstr "Hohe Priorität"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "Höchste Priorität" msgstr "Höchste Priorität"
@ -309,21 +305,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "IPv4 Unterstützung" msgstr "IPv4 Unterstützung"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "IPv6 Unterstützung" msgstr "IPv6 Unterstützung"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "Informationen" msgstr "Informationen"
@ -331,45 +327,45 @@ msgstr "Informationen"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
msgstr "Letzter Durchgang" msgstr "Letzter Durchgang"
#: 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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "Niedrigste Priorität" msgstr "Niedrigste Priorität"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "Niedrige Priorität" msgstr "Niedrige Priorität"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
"Liste der verfügbaren Netzwerkschnittstellen, die den Start von banIP " "Liste der verfügbaren Netzwerkschnittstellen, die den Start von banIP "
@ -379,60 +375,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "Protokollbegrenzung" msgstr "Protokollbegrenzung"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "Protokollbedingungen" msgstr "Protokollbedingungen"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "Netzwerkschnittstellen" msgstr "Netzwerkschnittstellen"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -449,16 +453,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "Normale Priorität (Voreinstellung)" msgstr "Normale Priorität (Voreinstellung)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -468,7 +472,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Übersicht" msgstr "Übersicht"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
"Nur die zuletzt angegebene Anzahl der Protokolleinträge auf verdächtige " "Nur die zuletzt angegebene Anzahl der Protokolleinträge auf verdächtige "
@ -478,11 +482,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "Von 'msmtp' verwendetes Profil für banIP-Benachrichtigungs-E-Mails." msgstr "Von 'msmtp' verwendetes Profil für banIP-Benachrichtigungs-E-Mails."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -492,23 +496,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "Aktualisieren" msgstr "Aktualisieren"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "Neu laden" msgstr "Neu laden"
#: 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "Report-Verzeichnis" msgstr "Report-Verzeichnis"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "Neustart" msgstr "Neustart"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -517,11 +521,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Ergebnis" msgstr "Ergebnis"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "Laufzeit-Flags" msgstr "Laufzeit-Flags"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "Informationen zur Ausführung" msgstr "Informationen zur Ausführung"
@ -533,23 +537,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "Absenderadresse für banIP-Benachrichtigungs-E-Mails." msgstr "Absenderadresse für banIP-Benachrichtigungs-E-Mails."
@ -558,11 +562,15 @@ msgstr "Absenderadresse für banIP-Benachrichtigungs-E-Mails."
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -578,29 +586,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "Einstellungen" msgstr "Einstellungen"
#: 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "Trigger-Interface fürs Starten" msgstr "Trigger-Interface fürs Starten"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -608,17 +624,17 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "Zielverzeichnis für IPSet-bezogene Berichtsdateien." 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "Zielverzeichnis für komprimierte Quelllistensicherungen." msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
msgid "The allowlist is too big, unable to save modifications." msgid "The allowlist is too big, unable to save modifications."
@ -628,13 +644,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -672,11 +688,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "Zeitstempel" msgstr "Zeitstempel"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "Betreff für banIP-Benachrichtigungs-E-Mails." msgstr "Betreff für banIP-Benachrichtigungs-E-Mails."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Verzögerung der Trigger-Bedingung" msgstr "Verzögerung der Trigger-Bedingung"
@ -685,11 +701,11 @@ msgstr "Verzögerung der Trigger-Bedingung"
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Ausführliche Debug-Protokollierung" msgstr "Ausführliche Debug-Protokollierung"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -697,7 +713,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -705,10 +721,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -721,6 +745,51 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "banIP" msgstr "banIP"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Active Interfaces"
#~ msgstr "Aktive Schnittstellen"
#~ msgid "Target directory for IPSet related report files."
#~ msgstr "Zielverzeichnis für IPSet-bezogene Berichtsdateien."
#~ msgid "Target directory for compressed source list backups."
#~ msgstr "Zielverzeichnis für komprimierte Quelllistensicherungen."
#~ msgid "" #~ msgid ""
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes " #~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
#~ "take effect." #~ "take effect."

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,43 +105,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "φάκελος διάσωσης" msgstr "φάκελος διάσωσης"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -155,7 +151,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -164,11 +160,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Ακύρωση" msgstr "Ακύρωση"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -181,59 +177,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -245,7 +241,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -253,31 +249,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -285,7 +281,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
@ -293,11 +289,11 @@ msgstr ""
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "" msgstr ""
@ -309,21 +305,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "" msgstr ""
@ -331,45 +327,45 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -377,60 +373,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -447,16 +451,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -466,7 +470,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -474,11 +478,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -488,23 +492,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "" 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -513,11 +517,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "" msgstr ""
@ -529,23 +533,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -554,11 +558,15 @@ msgstr ""
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -574,29 +582,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "Ρυθμίσεις" 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -604,16 +620,16 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
@ -624,13 +640,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -668,11 +684,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -681,11 +697,11 @@ msgstr ""
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -693,7 +709,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -701,10 +717,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -717,6 +741,42 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Action" #~ msgid "Action"
#~ msgstr "Δράση" #~ msgstr "Δράση"

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,43 +105,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -155,7 +151,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -164,11 +160,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -181,59 +177,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -245,7 +241,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -253,31 +249,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -285,7 +281,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
@ -293,11 +289,11 @@ msgstr ""
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "" msgstr ""
@ -309,21 +305,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "" msgstr ""
@ -331,45 +327,45 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -377,60 +373,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -447,16 +451,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -466,7 +470,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -474,11 +478,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -488,23 +492,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "" 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -513,11 +517,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "" msgstr ""
@ -529,23 +533,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -554,11 +558,15 @@ msgstr ""
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -574,29 +582,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "" 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -604,16 +620,16 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
@ -624,13 +640,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -668,11 +684,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -681,11 +697,11 @@ msgstr ""
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -693,7 +709,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -701,10 +717,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -716,3 +740,39 @@ msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:3 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:3
msgid "banIP" msgid "banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""

View file

@ -17,92 +17,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "ASNs" msgstr "ASNs"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "Dispositivos activos" msgstr "Dispositivos activos"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr "Interfaces activas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "Subredes activas" msgstr "Subredes activas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -112,43 +108,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Detección automática" msgstr "Detección automática"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Directorio de respaldo" msgstr "Directorio de respaldo"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -158,7 +154,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -167,11 +163,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Cancelar" msgstr "Cancelar"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -184,59 +180,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "Países" msgstr "Países"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
msgstr "No verificar los certificados SSL del servidor durante la descarga." msgstr "No verificar los certificados SSL del servidor durante la descarga."
#: 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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Descarga insegura" msgstr "Descarga insegura"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "Descargar parámetros" msgstr "Descargar parámetros"
#: 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "Utilidad de descarga" msgstr "Utilidad de descarga"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "Perfil de correo electrónico" msgstr "Perfil de correo electrónico"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "Dirección del destinatario de correo electrónico" msgstr "Dirección del destinatario de correo electrónico"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "Dirección del remitente de correo electrónico" msgstr "Dirección del remitente de correo electrónico"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "Tema del correo electrónico" msgstr "Tema del correo electrónico"
@ -248,7 +244,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -256,31 +252,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "Activar el servicio banIP.." msgstr "Activar el servicio banIP.."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "Activado" msgstr "Activado"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -288,7 +284,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "Configuración general" msgstr "Configuración general"
@ -296,11 +292,11 @@ msgstr "Configuración general"
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "Otorgar acceso a la aplicación banIP de LuCI" msgstr "Otorgar acceso a la aplicación banIP de LuCI"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "Alta prioridad" msgstr "Alta prioridad"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "Prioridad más alta" msgstr "Prioridad más alta"
@ -312,21 +308,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "Soporte IPv4" msgstr "Soporte IPv4"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "Soporte IPv6" msgstr "Soporte IPv6"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "Información" msgstr "Información"
@ -334,45 +330,45 @@ msgstr "Información"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
msgstr "Último inicio" msgstr "Último inicio"
#: 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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "Prioridad mínima" msgstr "Prioridad mínima"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "Menos prioridad" msgstr "Menos prioridad"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
"Lista de interfaces de red disponibles para activar el inicio de banIP." "Lista de interfaces de red disponibles para activar el inicio de banIP."
@ -381,60 +377,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "Límite de registro" msgstr "Límite de registro"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "Términos de registro" msgstr "Términos de registro"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "Interfaces de red" msgstr "Interfaces de red"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -451,16 +455,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "Prioridad normal (predeterminado)" msgstr "Prioridad normal (predeterminado)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -470,7 +474,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Visión general" msgstr "Visión general"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
"Analice solo el último número indicado de entradas de registro para detectar " "Analice solo el último número indicado de entradas de registro para detectar "
@ -480,13 +484,13 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
"Perfil utilizado por 'msmtp' para correos electrónicos de notificación de " "Perfil utilizado por 'msmtp' para correos electrónicos de notificación de "
"banIP." "banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -496,23 +500,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "Refrescar" msgstr "Refrescar"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "Recargar" msgstr "Recargar"
#: 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "Informar directorio" msgstr "Informar directorio"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "Reiniciar" msgstr "Reiniciar"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -521,11 +525,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Resultado" msgstr "Resultado"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "Ejecutar banderas" msgstr "Ejecutar banderas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "Ejecutar información" msgstr "Ejecutar información"
@ -537,23 +541,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
"Dirección del remitente para correos electrónicos de notificación de banIP." "Dirección del remitente para correos electrónicos de notificación de banIP."
@ -563,11 +567,15 @@ msgstr ""
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -583,29 +591,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "Configuraciones" msgstr "Configuraciones"
#: 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "Interfaz de activación de inicio" msgstr "Interfaz de activación de inicio"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -613,20 +629,17 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" msgstr ""
"Directorio de destino para archivos de informes relacionados con IPSet."
#: 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
"Directorio de destino para copias de seguridad de listas de origen "
"comprimidas."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
msgid "The allowlist is too big, unable to save modifications." msgid "The allowlist is too big, unable to save modifications."
@ -636,13 +649,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -680,11 +693,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "Marca de tiempo" msgstr "Marca de tiempo"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "Tema para correos electrónicos de notificación de banIP." msgstr "Tema para correos electrónicos de notificación de banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Retraso de disparo" msgstr "Retraso de disparo"
@ -693,11 +706,11 @@ msgstr "Retraso de disparo"
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Registro de depuración detallado" msgstr "Registro de depuración detallado"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -705,7 +718,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -713,10 +726,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -729,6 +750,54 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "banIP" msgstr "banIP"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Active Interfaces"
#~ msgstr "Interfaces activas"
#~ msgid "Target directory for IPSet related report files."
#~ msgstr ""
#~ "Directorio de destino para archivos de informes relacionados con IPSet."
#~ msgid "Target directory for compressed source list backups."
#~ msgstr ""
#~ "Directorio de destino para copias de seguridad de listas de origen "
#~ "comprimidas."
#~ msgid "" #~ msgid ""
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes " #~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
#~ "take effect." #~ "take effect."

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "ASN:t" msgstr "ASN:t"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "Aktiiviset laitteet" msgstr "Aktiiviset laitteet"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr "Aktiiviset liitynnät"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "Aktiiviset aliverkot" msgstr "Aktiiviset aliverkot"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,43 +105,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Automaattinen tunnistus" msgstr "Automaattinen tunnistus"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Varmuuskopiohakemisto" msgstr "Varmuuskopiohakemisto"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -155,7 +151,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -164,11 +160,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Peruuta" msgstr "Peruuta"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -181,59 +177,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "Maat" msgstr "Maat"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
msgstr "Älä tarkista SSL-palvelinvarmenteita latauksen aikana." msgstr "Älä tarkista SSL-palvelinvarmenteita latauksen aikana."
#: 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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "Lataustyökalu" msgstr "Lataustyökalu"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -245,7 +241,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -253,31 +249,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "Ota banIP-palvelun käyttöön." msgstr "Ota banIP-palvelun käyttöön."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "Käytössä" msgstr "Käytössä"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -285,7 +281,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "Yleiset asetukset" msgstr "Yleiset asetukset"
@ -293,11 +289,11 @@ msgstr "Yleiset asetukset"
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "" msgstr ""
@ -309,21 +305,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "IPv4-tuki" msgstr "IPv4-tuki"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "IPv6-tuki" msgstr "IPv6-tuki"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "" msgstr ""
@ -331,45 +327,45 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
msgstr "Viimeksi ajettu" msgstr "Viimeksi ajettu"
#: 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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -377,60 +373,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "Verkkoliitynnät" msgstr "Verkkoliitynnät"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -447,16 +451,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -466,7 +470,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Yleiskatsaus" msgstr "Yleiskatsaus"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -474,11 +478,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -488,23 +492,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "Päivitä" msgstr "Päivitä"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "" 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "Käynnistä uudelleen" msgstr "Käynnistä uudelleen"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -513,11 +517,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Tulos" msgstr "Tulos"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "" msgstr ""
@ -529,23 +533,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -554,11 +558,15 @@ msgstr ""
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -574,29 +582,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "Asetukset" msgstr "Asetukset"
#: 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -604,16 +620,16 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
@ -624,13 +640,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -668,11 +684,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -681,11 +697,11 @@ msgstr ""
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -693,7 +709,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -701,10 +717,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -717,6 +741,45 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Active Interfaces"
#~ msgstr "Aktiiviset liitynnät"
#~ msgid "Unable to save changes: %s" #~ msgid "Unable to save changes: %s"
#~ msgstr "Muutoksia ei voitu tallentaa: %s" #~ msgstr "Muutoksia ei voitu tallentaa: %s"

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "Les ASN" msgstr "Les ASN"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "Appareils actifs" msgstr "Appareils actifs"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr "Interfaces actives"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "Sous-réseaux actifs" msgstr "Sous-réseaux actifs"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,43 +105,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Détection automatique" msgstr "Détection automatique"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Répertoire de sauvegarde" msgstr "Répertoire de sauvegarde"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -155,7 +151,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -164,11 +160,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Annuler" msgstr "Annuler"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -181,60 +177,60 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "Pays" msgstr "Pays"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
msgstr "" msgstr ""
"Ne pas vérifier les certificats SSL du serveur pendant le téléchargement." "Ne pas vérifier les certificats SSL du serveur pendant le téléchargement."
#: 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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Téléchargement non sécurisé" msgstr "Téléchargement non sécurisé"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "Paramètres de téléchargement" msgstr "Paramètres de téléchargement"
#: 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "Télécharger l'utilitaire" msgstr "Télécharger l'utilitaire"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "Courriel du profil" msgstr "Courriel du profil"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "Adresse courriel du destinataire" msgstr "Adresse courriel du destinataire"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "Adresse courriel de l'expéditeur" msgstr "Adresse courriel de l'expéditeur"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "Objet du courriel" msgstr "Objet du courriel"
@ -246,7 +242,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -254,31 +250,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "Activer le service banIP." msgstr "Activer le service banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "Activé" msgstr "Activé"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -286,7 +282,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "Paramètres généraux" msgstr "Paramètres généraux"
@ -294,11 +290,11 @@ msgstr "Paramètres généraux"
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "Accorder l'accès à l'application LuCI banIP" msgstr "Accorder l'accès à l'application LuCI banIP"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "Priorité élevée" msgstr "Priorité élevée"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "Priorité la plus élevée" msgstr "Priorité la plus élevée"
@ -310,21 +306,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "Prise en charge dIPv4" msgstr "Prise en charge dIPv4"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "Prise en charge dIPv6" msgstr "Prise en charge dIPv6"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "Information" msgstr "Information"
@ -332,45 +328,45 @@ msgstr "Information"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
msgstr "Dernière exécution" msgstr "Dernière exécution"
#: 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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "Priorité minimale" msgstr "Priorité minimale"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "Moins prioritaire" msgstr "Moins prioritaire"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
"Liste des interfaces réseau disponibles pour déclencher le démarrage du " "Liste des interfaces réseau disponibles pour déclencher le démarrage du "
@ -380,60 +376,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "Limite de journalisation" msgstr "Limite de journalisation"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "Conditions de journalisation" msgstr "Conditions de journalisation"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "Interfaces réseau" msgstr "Interfaces réseau"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -450,16 +454,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "Priorité normale (par défaut)" msgstr "Priorité normale (par défaut)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -469,7 +473,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Aperçu" msgstr "Aperçu"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
"Analyser uniquement le dernier nombre indiqué d'entrées de journal pour les " "Analyser uniquement le dernier nombre indiqué d'entrées de journal pour les "
@ -479,13 +483,13 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
"Profil utilisé par 'msmtp' pour les courriel de notification de bannissement " "Profil utilisé par 'msmtp' pour les courriel de notification de bannissement "
"IP." "IP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -495,23 +499,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "Actualiser" msgstr "Actualiser"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "Recharger" msgstr "Recharger"
#: 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "Répertoire des rapports" msgstr "Répertoire des rapports"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "Redémarrer" msgstr "Redémarrer"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -520,11 +524,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Résultat" msgstr "Résultat"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "Drapeaux d'exécution" msgstr "Drapeaux d'exécution"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "Informations sur lexécution" msgstr "Informations sur lexécution"
@ -536,23 +540,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
"Adresse de l'expéditeur des courriels de notification de bannissement IP." "Adresse de l'expéditeur des courriels de notification de bannissement IP."
@ -562,11 +566,15 @@ msgstr ""
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -582,29 +590,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "Paramètres" msgstr "Paramètres"
#: 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "Interface des déclencheurs de démarrage" msgstr "Interface des déclencheurs de démarrage"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -612,18 +628,17 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "Répertoire cible pour les fichiers de rapport relatifs à IPSet." 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
"Répertoire cible pour les sauvegardes compressées de la liste des sources."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
msgid "The allowlist is too big, unable to save modifications." msgid "The allowlist is too big, unable to save modifications."
@ -633,13 +648,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -677,11 +692,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "Horodatage" msgstr "Horodatage"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "Rubrique pour les courriels de notification banIP." msgstr "Rubrique pour les courriels de notification banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Délai de déclenchement" msgstr "Délai de déclenchement"
@ -690,11 +705,11 @@ msgstr "Délai de déclenchement"
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Journalisation détaillée du débogage" msgstr "Journalisation détaillée du débogage"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -702,7 +717,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -710,10 +725,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -726,6 +749,52 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "bannissement IP" msgstr "bannissement IP"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Active Interfaces"
#~ msgstr "Interfaces actives"
#~ msgid "Target directory for IPSet related report files."
#~ msgstr "Répertoire cible pour les fichiers de rapport relatifs à IPSet."
#~ msgid "Target directory for compressed source list backups."
#~ msgstr ""
#~ "Répertoire cible pour les sauvegardes compressées de la liste des sources."
#~ msgid "" #~ msgid ""
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes " #~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
#~ "take effect." #~ "take effect."

View file

@ -15,92 +15,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -110,43 +106,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -156,7 +152,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -165,11 +161,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -182,59 +178,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -246,7 +242,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -254,31 +250,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -286,7 +282,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
@ -294,11 +290,11 @@ msgstr ""
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "" msgstr ""
@ -310,21 +306,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "" msgstr ""
@ -332,45 +328,45 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -378,60 +374,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -448,16 +452,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -467,7 +471,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -475,11 +479,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -489,23 +493,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "" 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -514,11 +518,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "" msgstr ""
@ -530,23 +534,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -555,11 +559,15 @@ msgstr ""
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -575,29 +583,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "" 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -605,16 +621,16 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
@ -625,13 +641,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -669,11 +685,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -682,11 +698,11 @@ msgstr ""
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -694,7 +710,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -702,10 +718,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -718,5 +742,41 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Description" #~ msgid "Description"
#~ msgstr "תיאור" #~ msgstr "תיאור"

View file

@ -8,92 +8,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -103,43 +99,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -149,7 +145,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -158,11 +154,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -175,59 +171,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -239,7 +235,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -247,31 +243,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -279,7 +275,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
@ -287,11 +283,11 @@ msgstr ""
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "" msgstr ""
@ -303,21 +299,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "" msgstr ""
@ -325,45 +321,45 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -371,60 +367,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -441,16 +445,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -460,7 +464,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -468,11 +472,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -482,23 +486,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "" 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -507,11 +511,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "" msgstr ""
@ -523,23 +527,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -548,11 +552,15 @@ msgstr ""
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -568,29 +576,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "" 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -598,16 +614,16 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
@ -618,13 +634,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -662,11 +678,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -675,11 +691,11 @@ msgstr ""
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -687,7 +703,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -695,10 +711,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -710,3 +734,39 @@ msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:3 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:3
msgid "banIP" msgid "banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "AS számok" msgstr "AS számok"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "Aktív eszközök" msgstr "Aktív eszközök"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr "Aktív csatolók"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "Aktív alhálózatok" msgstr "Aktív alhálózatok"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,43 +105,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Automatikus észlelés" msgstr "Automatikus észlelés"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Biztonsági mentés könyvtára" msgstr "Biztonsági mentés könyvtára"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -155,7 +151,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -164,11 +160,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Mégse" msgstr "Mégse"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -181,59 +177,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "Országok" msgstr "Országok"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "Letöltési segédprogram" msgstr "Letöltési segédprogram"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "E-Mail profil" msgstr "E-Mail profil"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "E-Mail küldő cím" msgstr "E-Mail küldő cím"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
#, fuzzy #, fuzzy
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "E-Mail téma" msgstr "E-Mail téma"
@ -246,7 +242,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -254,31 +250,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "Engedélyezve" msgstr "Engedélyezve"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -286,7 +282,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "Általános Beállítások" msgstr "Általános Beállítások"
@ -294,11 +290,11 @@ msgstr "Általános Beállítások"
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "" msgstr ""
@ -310,21 +306,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "IPv4 támogatás" msgstr "IPv4 támogatás"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "IPv6 támogatás" msgstr "IPv6 támogatás"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "Információ" msgstr "Információ"
@ -332,45 +328,45 @@ msgstr "Információ"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
msgstr "Utolsó futás" msgstr "Utolsó futás"
#: 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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "Legkisebb prioritás" msgstr "Legkisebb prioritás"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "Kisebb prioritás" msgstr "Kisebb prioritás"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -378,60 +374,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "Hálózati csatolók" msgstr "Hálózati csatolók"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -448,16 +452,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "Közepes prioritás (alapértelmezett)" msgstr "Közepes prioritás (alapértelmezett)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -467,7 +471,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Áttekintés" msgstr "Áttekintés"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -475,11 +479,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -489,23 +493,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "Frissítés" msgstr "Frissítés"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "Újratöltés" msgstr "Újratöltés"
#: 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "Újraindítás" msgstr "Újraindítás"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -514,11 +518,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Eredmény" msgstr "Eredmény"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "" msgstr ""
@ -530,23 +534,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -555,11 +559,15 @@ msgstr ""
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -575,29 +583,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "Beállítások" msgstr "Beállítások"
#: 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -605,16 +621,16 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
@ -625,13 +641,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -669,11 +685,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Aktiváló késleltetése" msgstr "Aktiváló késleltetése"
@ -682,11 +698,11 @@ msgstr "Aktiváló késleltetése"
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Részletes hibakeresési naplózás" msgstr "Részletes hibakeresési naplózás"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -694,7 +710,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -702,10 +718,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -718,6 +742,45 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "banIP" msgstr "banIP"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Active Interfaces"
#~ msgstr "Aktív csatolók"
#~ msgid "" #~ msgid ""
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes " #~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
#~ "take effect." #~ "take effect."

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,43 +105,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Directory del Backup" msgstr "Directory del Backup"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -155,7 +151,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -164,11 +160,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Annulla" msgstr "Annulla"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -181,59 +177,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
msgstr "Non controllare i certificati del server SSL durante il download." msgstr "Non controllare i certificati del server SSL durante il download."
#: 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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Download non sicuro" msgstr "Download non sicuro"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "Parametri di download" msgstr "Parametri di download"
#: 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "Utilità di download" msgstr "Utilità di download"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "Profilo e-mail" msgstr "Profilo e-mail"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "Indirizzo e-mail destinatario" msgstr "Indirizzo e-mail destinatario"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "Indirizzo e-mail mittente" msgstr "Indirizzo e-mail mittente"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "Oggetto e-mail" msgstr "Oggetto e-mail"
@ -245,7 +241,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -253,31 +249,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "Abilitato" msgstr "Abilitato"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -285,7 +281,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "Impostazioni Generali" msgstr "Impostazioni Generali"
@ -293,11 +289,11 @@ msgstr "Impostazioni Generali"
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "" msgstr ""
@ -309,21 +305,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "Informazioni" msgstr "Informazioni"
@ -331,45 +327,45 @@ msgstr "Informazioni"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -377,60 +373,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -447,16 +451,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -466,7 +470,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Riepilogo" msgstr "Riepilogo"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -474,11 +478,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -488,23 +492,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "Ricaricare" msgstr "Ricaricare"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "Aggiorna" msgstr "Aggiorna"
#: 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "Directory dei report" msgstr "Directory dei report"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "Riavvia" msgstr "Riavvia"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -513,11 +517,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Risultato" msgstr "Risultato"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "Avvia Flags" msgstr "Avvia Flags"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "" msgstr ""
@ -529,23 +533,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -554,11 +558,15 @@ msgstr ""
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -574,29 +582,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "Impostazioni" msgstr "Impostazioni"
#: 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "Interfaccia trigger di avvio" msgstr "Interfaccia trigger di avvio"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -604,16 +620,16 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
@ -624,13 +640,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -668,11 +684,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -681,11 +697,11 @@ msgstr ""
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -693,7 +709,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -701,10 +717,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -717,6 +741,42 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Unable to save changes: %s" #~ msgid "Unable to save changes: %s"
#~ msgstr "Impossibile salvare le modifiche: %s" #~ msgstr "Impossibile salvare le modifiche: %s"

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "アクティブなデバイス" msgstr "アクティブなデバイス"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "アクティブなサブネット" msgstr "アクティブなサブネット"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,43 +105,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "自動検出" msgstr "自動検出"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "バックアップ先 ディレクトリ" msgstr "バックアップ先 ディレクトリ"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -155,7 +151,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -164,11 +160,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "キャンセル" msgstr "キャンセル"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -181,59 +177,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "国" msgstr "国"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "ダウンロードのパラメータ" 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "ダウンロードユーティリティ" msgstr "ダウンロードユーティリティ"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "Eメールプロファイル" msgstr "Eメールプロファイル"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "Eメール受信アドレス" msgstr "Eメール受信アドレス"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "Eメール送信者アドレス" msgstr "Eメール送信者アドレス"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "Eメールトピック" msgstr "Eメールトピック"
@ -245,7 +241,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -253,31 +249,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "banIP サービスを有効にする。" msgstr "banIP サービスを有効にする。"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "有効" msgstr "有効"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -285,7 +281,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "一般設定" msgstr "一般設定"
@ -293,11 +289,11 @@ msgstr "一般設定"
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "高い優先度" msgstr "高い優先度"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "最高の優先度" msgstr "最高の優先度"
@ -309,21 +305,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "IPv4 サポート" msgstr "IPv4 サポート"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "IPv6 サポート" msgstr "IPv6 サポート"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "情報" msgstr "情報"
@ -331,45 +327,45 @@ msgstr "情報"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "最低の優先度" msgstr "最低の優先度"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "低い優先度" msgstr "低い優先度"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -377,60 +373,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "ログ制限" msgstr "ログ制限"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "ネットワークインターフェース" msgstr "ネットワークインターフェース"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -447,16 +451,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "通常の優先度 (デフォルト)" msgstr "通常の優先度 (デフォルト)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -466,7 +470,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "概要" msgstr "概要"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -474,11 +478,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -488,23 +492,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "リフレッシュ" msgstr "リフレッシュ"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "リロード" 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "レポート ディレクトリ" msgstr "レポート ディレクトリ"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "再起動" msgstr "再起動"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -513,11 +517,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "結果" msgstr "結果"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "実行フラグ" msgstr "実行フラグ"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "実行情報" msgstr "実行情報"
@ -529,23 +533,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -554,11 +558,15 @@ msgstr ""
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -574,29 +582,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "設定" 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "起動時トリガーインターフェース" msgstr "起動時トリガーインターフェース"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -604,16 +620,16 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
@ -624,13 +640,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -668,11 +684,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "タイムスタンプ" msgstr "タイムスタンプ"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "トリガ遅延" msgstr "トリガ遅延"
@ -681,11 +697,11 @@ msgstr "トリガ遅延"
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "詳細なデバッグ ログ" msgstr "詳細なデバッグ ログ"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -693,7 +709,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -701,10 +717,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -717,6 +741,42 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Unable to save changes: %s" #~ msgid "Unable to save changes: %s"
#~ msgstr "変更を保存できませんでした: %s" #~ msgstr "変更を保存できませんでした: %s"

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,44 +105,44 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
#, fuzzy #, fuzzy
msgid "Backup Directory" msgid "Backup Directory"
msgstr "백업 경로" msgstr "백업 경로"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -156,7 +152,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -165,11 +161,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "취소" msgstr "취소"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -182,59 +178,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -246,7 +242,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -254,31 +250,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "활성화" msgstr "활성화"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -286,7 +282,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "기본 설정" msgstr "기본 설정"
@ -294,11 +290,11 @@ msgstr "기본 설정"
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "" msgstr ""
@ -310,21 +306,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "정보" msgstr "정보"
@ -332,45 +328,45 @@ msgstr "정보"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -378,60 +374,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -448,16 +452,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -467,7 +471,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "개요" msgstr "개요"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -475,11 +479,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -489,23 +493,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "" 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -514,11 +518,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "" msgstr ""
@ -530,23 +534,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -555,11 +559,15 @@ msgstr ""
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -575,29 +583,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "" 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -605,16 +621,16 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
@ -625,13 +641,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -669,11 +685,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -682,11 +698,11 @@ msgstr ""
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -694,7 +710,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -702,10 +718,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -718,6 +742,42 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Name" #~ msgid "Name"
#~ msgstr "이름" #~ msgstr "이름"

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,43 +105,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -155,7 +151,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -164,11 +160,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -181,59 +177,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -245,7 +241,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -253,31 +249,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -285,7 +281,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
@ -293,11 +289,11 @@ msgstr ""
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "" msgstr ""
@ -309,21 +305,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "" msgstr ""
@ -331,45 +327,45 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -377,60 +373,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -447,16 +451,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -466,7 +470,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "आढावा" msgstr "आढावा"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -474,11 +478,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -488,23 +492,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "रीलोड करा" 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -513,11 +517,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "" msgstr ""
@ -529,23 +533,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -554,11 +558,15 @@ msgstr ""
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -574,29 +582,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "" 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -604,16 +620,16 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
@ -624,13 +640,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -668,11 +684,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -681,11 +697,11 @@ msgstr ""
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -693,7 +709,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -701,10 +717,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -717,6 +741,42 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Description" #~ msgid "Description"
#~ msgstr "वर्णन" #~ msgstr "वर्णन"

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,43 +105,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Direktori Sandaran" msgstr "Direktori Sandaran"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -155,7 +151,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -164,11 +160,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -181,59 +177,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -245,7 +241,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -253,31 +249,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -285,7 +281,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
@ -293,11 +289,11 @@ msgstr ""
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "" msgstr ""
@ -309,21 +305,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "" msgstr ""
@ -331,45 +327,45 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -377,60 +373,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -447,16 +451,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -466,7 +470,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -474,11 +478,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -488,23 +492,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "" 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -513,11 +517,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "" msgstr ""
@ -529,23 +533,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -554,11 +558,15 @@ msgstr ""
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -574,29 +582,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "" 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -604,16 +620,16 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
@ -624,13 +640,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -668,11 +684,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -681,11 +697,11 @@ msgstr ""
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -693,7 +709,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -701,10 +717,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -717,6 +741,42 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Advanced" #~ msgid "Advanced"
#~ msgstr "Lanjutan" #~ msgstr "Lanjutan"

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,43 +105,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Sikkerhetskopimappe" msgstr "Sikkerhetskopimappe"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -155,7 +151,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -164,11 +160,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Avbryt" msgstr "Avbryt"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -181,59 +177,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "Nedlastingsparametre" msgstr "Nedlastingsparametre"
#: 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "Nedlastingsverktøy" msgstr "Nedlastingsverktøy"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "E-postprofil" msgstr "E-postprofil"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "E-postsenderadresse" msgstr "E-postsenderadresse"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "E-postemne" msgstr "E-postemne"
@ -245,7 +241,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -253,31 +249,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "Påskrudd" msgstr "Påskrudd"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -285,7 +281,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "Generelle innstillinger" msgstr "Generelle innstillinger"
@ -293,11 +289,11 @@ msgstr "Generelle innstillinger"
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "" msgstr ""
@ -309,21 +305,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "IPv6-støtte" msgstr "IPv6-støtte"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "Info" msgstr "Info"
@ -331,45 +327,45 @@ msgstr "Info"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
msgstr "Sist kjørt" msgstr "Sist kjørt"
#: 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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -377,60 +373,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -447,16 +451,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -466,7 +470,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Oversikt" msgstr "Oversikt"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -474,11 +478,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -488,23 +492,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "Gjenoppfrisk" msgstr "Gjenoppfrisk"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "" 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "Rapportmappe" msgstr "Rapportmappe"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "Omstart" msgstr "Omstart"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -513,12 +517,12 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Resultat" msgstr "Resultat"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
#, fuzzy #, fuzzy
msgid "Run Flags" msgid "Run Flags"
msgstr "Kjøringsflagg" msgstr "Kjøringsflagg"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "" msgstr ""
@ -530,23 +534,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -555,11 +559,15 @@ msgstr ""
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -575,29 +583,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "Innstillinger" msgstr "Innstillinger"
#: 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -605,16 +621,16 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
@ -625,13 +641,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -669,11 +685,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Utløserforsinkelse" msgstr "Utløserforsinkelse"
@ -682,11 +698,11 @@ msgstr "Utløserforsinkelse"
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -694,7 +710,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -702,10 +718,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -718,6 +742,42 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Unable to save changes: %s" #~ msgid "Unable to save changes: %s"
#~ msgstr "Kunne ikke lagre endringer: %s" #~ msgstr "Kunne ikke lagre endringer: %s"

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "ASN's" msgstr "ASN's"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "Actieve apparaten" msgstr "Actieve apparaten"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr "Actieve interfaces"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "Actieve subnetten" msgstr "Actieve subnetten"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,43 +105,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Autodetectie" msgstr "Autodetectie"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Backup Directory" msgstr "Backup Directory"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -155,7 +151,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -164,11 +160,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Afbreken" msgstr "Afbreken"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -181,59 +177,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "Landen" msgstr "Landen"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
msgstr "Tijdens download niet de SSL server certificaten controleren." msgstr "Tijdens download niet de SSL server certificaten controleren."
#: 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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Onbeveiligd downloaden" msgstr "Onbeveiligd downloaden"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "Parameters downloaden" msgstr "Parameters downloaden"
#: 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "Download hulpprogramma" msgstr "Download hulpprogramma"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "E-Mail profiel" msgstr "E-Mail profiel"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "E-Mail adres van ontvanger" msgstr "E-Mail adres van ontvanger"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "E-Mail adres van verzender" msgstr "E-Mail adres van verzender"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "E-Mail onderwerp" msgstr "E-Mail onderwerp"
@ -245,7 +241,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -253,31 +249,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "Activeer de banIP service." msgstr "Activeer de banIP service."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "Geactiveerd" msgstr "Geactiveerd"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -285,7 +281,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "Algemene instellingen" msgstr "Algemene instellingen"
@ -293,11 +289,11 @@ msgstr "Algemene instellingen"
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "Geef toegang tot LuCI app banIP" msgstr "Geef toegang tot LuCI app banIP"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "Hoge prioriteit" msgstr "Hoge prioriteit"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "Hoogste prioriteit" msgstr "Hoogste prioriteit"
@ -309,21 +305,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "IPv4 ondersteuning" msgstr "IPv4 ondersteuning"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "IPv6 ondersteuning" msgstr "IPv6 ondersteuning"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "Informatie" msgstr "Informatie"
@ -331,45 +327,45 @@ msgstr "Informatie"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
msgstr "Laatst gedraaid" msgstr "Laatst gedraaid"
#: 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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "Laagste prioriteit" msgstr "Laagste prioriteit"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "Lage prioriteit" msgstr "Lage prioriteit"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "Lijst van beschikbare netwerkinterfaces die banIP starten." msgstr "Lijst van beschikbare netwerkinterfaces die banIP starten."
@ -377,61 +373,69 @@ msgstr "Lijst van beschikbare netwerkinterfaces die banIP starten."
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "Log limiet" msgstr "Log limiet"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
#, fuzzy #, fuzzy
msgid "Log Terms" msgid "Log Terms"
msgstr "Log termen (sleutelwoorden)" msgstr "Log termen (sleutelwoorden)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "Netwerk interfaces" msgstr "Netwerk interfaces"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -448,16 +452,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "Normale prioriteit (standaard)" msgstr "Normale prioriteit (standaard)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -467,7 +471,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Overzicht" msgstr "Overzicht"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
"Laat alleen het aantal regels in de log zien van de verdachte gebeurtenissen." "Laat alleen het aantal regels in de log zien van de verdachte gebeurtenissen."
@ -476,12 +480,12 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
"Profiel gebruikt voor 'msmtp' voor banIP E-Mail berichten/notificaties." "Profiel gebruikt voor 'msmtp' voor banIP E-Mail berichten/notificaties."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -491,23 +495,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "Herladen" msgstr "Herladen"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "" 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "Rapportage directory" msgstr "Rapportage directory"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "Herstart" msgstr "Herstart"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -516,12 +520,12 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Resultaat" msgstr "Resultaat"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
#, fuzzy #, fuzzy
msgid "Run Flags" msgid "Run Flags"
msgstr "Verwerkingsinstellingen" msgstr "Verwerkingsinstellingen"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
#, fuzzy #, fuzzy
msgid "Run Information" msgid "Run Information"
msgstr "Verwerkingsinformatie" msgstr "Verwerkingsinformatie"
@ -534,23 +538,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "Afzender e-mailadres voor de banIP email meldingen." msgstr "Afzender e-mailadres voor de banIP email meldingen."
@ -559,11 +563,15 @@ msgstr "Afzender e-mailadres voor de banIP email meldingen."
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -579,29 +587,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "Instellingen" msgstr "Instellingen"
#: 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -609,16 +625,16 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
@ -629,13 +645,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -673,11 +689,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -686,11 +702,11 @@ msgstr ""
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -698,7 +714,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -706,10 +722,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -722,6 +746,45 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Active Interfaces"
#~ msgstr "Actieve interfaces"
#~ msgid "" #~ msgid ""
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes " #~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
#~ "take effect." #~ "take effect."

View file

@ -15,94 +15,90 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "-- Wybór zestawu --" msgstr "-- Wybór zestawu --"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "-100" msgstr "-100"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "-200 (domyślne)" msgstr "-200 (domyślne)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "-300" msgstr "-300"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "-400" msgstr "-400"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
msgstr "0" msgstr "0"
#: 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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "100 (domyślne)" msgstr "100 (domyślne)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "1000" msgstr "1000"
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "1024 (domyślne)" msgstr "1024 (domyślne)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "2048" msgstr "2048"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
msgstr "250" msgstr "250"
#: 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:335
msgid "4096" msgid "4096"
msgstr "4096" msgstr "4096"
#: 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:457
msgid "50" msgid "50"
msgstr "50" msgstr "50"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "500" msgstr "500"
#: 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:332
msgid "512" msgid "512"
msgstr "512" msgstr "512"
#: 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:536
msgid "ASNs" msgid "ASNs"
msgstr "ASN-y" msgstr "ASN-y"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "Aktywne urządzenia" msgstr "Aktywne urządzenia"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "Aktywne kanały" msgstr "Aktywne kanały"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr "Aktywne interfejsy"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "Aktywne podsieci" msgstr "Aktywne podsieci"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
"Dodatkowe opóźnienie wyzwalacza w sekundach przed faktycznym rozpoczęciem " "Dodatkowe opóźnienie wyzwalacza w sekundach przed faktycznym rozpoczęciem "
"przetwarzania banIP." "przetwarzania banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Ustawienia zaawansowane" msgstr "Ustawienia zaawansowane"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "Tylko lista dozwolonych" msgstr "Tylko lista dozwolonych"
@ -114,44 +110,44 @@ msgstr ""
"Modyfikacje listy dozwolonych zostały zapisane, uruchom ponownie banIP, aby " "Modyfikacje listy dozwolonych zostały zapisane, uruchom ponownie banIP, aby "
"zmiany zaczęły obowiązywać." "zmiany zaczęły obowiązywać."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "Automatyczna lista dozwolonych" msgstr "Automatyczna lista dozwolonych"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "Automatyczna lista zablokowanych" msgstr "Automatyczna lista zablokowanych"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Automatyczne wykrywanie" msgstr "Automatyczne wykrywanie"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
"Automatycznie przenosi podejrzane adresy IP na listę zablokowanych banIP." "Automatycznie przenosi podejrzane adresy IP na listę zablokowanych banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "Automatycznie przenosi adresy IP uplink na listę dozwolonych banIP." msgstr "Automatycznie przenosi adresy IP uplink na listę dozwolonych banIP."
#: 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Katalog kopii zapasowej" msgstr "Katalog kopii zapasowej"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "Główny katalog" msgstr "Główny katalog"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "Główny katalog roboczy podczas przetwarzania banIP." msgstr "Główny katalog roboczy podczas przetwarzania 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "Wygaśnięcie listy zablokowanych" msgstr "Wygaśnięcie listy zablokowanych"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "Kanały listy zablokowanych" msgstr "Kanały listy zablokowanych"
@ -163,7 +159,7 @@ msgstr ""
"Modyfikacje listy zablokowanych zostały zapisane, uruchom ponownie banIP, " "Modyfikacje listy zablokowanych zostały zapisane, uruchom ponownie banIP, "
"aby zmiany zaczęły obowiązywać." "aby zmiany zaczęły obowiązywać."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "Rdzenie procesora" msgstr "Rdzenie procesora"
@ -172,11 +168,11 @@ msgstr "Rdzenie procesora"
msgid "Cancel" msgid "Cancel"
msgstr "Anuluj" msgstr "Anuluj"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "Priorytet łańcucha" msgstr "Priorytet łańcucha"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "Ustawienia łańcucha/zestawu" msgstr "Ustawienia łańcucha/zestawu"
@ -194,11 +190,11 @@ msgstr ""
"banip/files/README.md\" target=\"_blank\" rel=\"noreferrer noopener\" " "banip/files/README.md\" target=\"_blank\" rel=\"noreferrer noopener\" "
">sprawdź dokumentację online</a>" ">sprawdź dokumentację online</a>"
#: 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:526
msgid "Countries" msgid "Countries"
msgstr "Kraje" msgstr "Kraje"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
@ -206,11 +202,11 @@ msgstr ""
"Deduplikuj adresy IP we wszystkich aktywnych zestawach i uporządkuj lokalną " "Deduplikuj adresy IP we wszystkich aktywnych zestawach i uporządkuj lokalną "
"listę zablokowanych." "listę zablokowanych."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "Deduplikuj adresy IP" msgstr "Deduplikuj adresy IP"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
@ -218,39 +214,39 @@ msgstr ""
"Automatycznie wykrywaj odpowiednie urządzenia sieciowe, interfejsy, " "Automatycznie wykrywaj odpowiednie urządzenia sieciowe, interfejsy, "
"podsieci, protokoły i narzędzia." "podsieci, protokoły i narzędzia."
#: 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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
msgstr "Nie sprawdzaj certyfikatów SSL serwera podczas pobierania." msgstr "Nie sprawdzaj certyfikatów SSL serwera podczas pobierania."
#: 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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Niezabezpieczone pobieranie" msgstr "Niezabezpieczone pobieranie"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "Parametry pobierania" msgstr "Parametry pobierania"
#: 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "Narzędzie pobierania" msgstr "Narzędzie pobierania"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "Profil e-mail" msgstr "Profil e-mail"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "Adres e-mail odbiorcy" msgstr "Adres e-mail odbiorcy"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "Adres e-mail nadawcy" msgstr "Adres e-mail nadawcy"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "Ustawienia e-mail" msgstr "Ustawienia e-mail"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "Temat e-mail" msgstr "Temat e-mail"
@ -262,7 +258,7 @@ msgstr "Edytuj listę dozwolonych"
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "Edytuj listę zablokowanych" msgstr "Edytuj listę zablokowanych"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "Liczba elementów" msgstr "Liczba elementów"
@ -270,32 +266,33 @@ msgstr "Liczba elementów"
msgid "Elements" msgid "Elements"
msgstr "Elementy" msgstr "Elementy"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "Włącz usługę banIP." msgstr "Włącz usługę banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "Włącz pełne rejestrowanie debugowania w przypadku błędów przetwarzania." msgstr ""
"Włącz pełne rejestrowanie debugowania w przypadku błędów przetwarzania."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "Włączone" msgstr "Włączone"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "Włącza obsługę IPv4." msgstr "Włącza obsługę IPv4."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "Włącza obsługę IPv6." msgstr "Włącza obsługę IPv6."
#: 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" msgstr ""
"Czas wygaśnięcia automatycznie dodanych członków zestawu listy zablokowanych." "Czas wygaśnięcia automatycznie dodanych członków zestawu listy zablokowanych."
#: 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "Wybór kanału" msgstr "Wybór kanału"
@ -303,7 +300,7 @@ msgstr "Wybór kanału"
msgid "Firewall Log" msgid "Firewall Log"
msgstr "Dziennik zapory" msgstr "Dziennik zapory"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "Ustawienia główne" msgstr "Ustawienia główne"
@ -311,11 +308,11 @@ msgstr "Ustawienia główne"
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "Udziel dostępu LuCI do aplikacji banIP" msgstr "Udziel dostępu LuCI do aplikacji banIP"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "Wysoki priorytet" msgstr "Wysoki priorytet"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "Najwyższy priorytet" msgstr "Najwyższy priorytet"
@ -327,15 +324,15 @@ msgstr "Wyszukiwanie IP"
msgid "IP Search..." msgid "IP Search..."
msgstr "Wyszukiwanie IP..." msgstr "Wyszukiwanie IP..."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "Obsługa IPv4" msgstr "Obsługa IPv4"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "Obsługa IPv6" msgstr "Obsługa IPv6"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
@ -343,7 +340,7 @@ msgstr ""
"Zwiększ maksymalną liczbę otwartych plików, np. w celu obsługi liczby " "Zwiększ maksymalną liczbę otwartych plików, np. w celu obsługi liczby "
"tymczasowo podzielonych plików podczas ładowania zestawów." "tymczasowo podzielonych plików podczas ładowania zestawów."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "Informacje" msgstr "Informacje"
@ -351,49 +348,47 @@ msgstr "Informacje"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "Przekazywanie LAN (pakiety)" msgstr "Przekazywanie LAN (pakiety)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "Łańcuch przekazywania LAN" msgstr "Łańcuch przekazywania LAN"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
msgstr "Ostatnie uruchomienie" msgstr "Ostatnie uruchomienie"
#: 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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "Najniższy priorytet" msgstr "Najniższy priorytet"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "Mniejszy priorytet" msgstr "Mniejszy priorytet"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "Ogranicz niektóre kanały do łańcucha przekazywania LAN." msgstr "Ogranicz niektóre kanały do łańcucha przekazywania LAN."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "Ogranicz niektóre kanały do łańcucha przekazywania WAN." msgstr "Ogranicz niektóre kanały do łańcucha przekazywania WAN."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "Ogranicz niektóre kanały do łańcucha wejścia WAN." msgstr "Ogranicz niektóre kanały do łańcucha wejścia WAN."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
"Ogranicz liczbę rdzeni procesora używanych przez banIP, aby oszczędzać " "Ogranicz liczbę rdzeni procesora używanych przez banIP, aby oszczędzać "
"pamięć RAM." "pamięć RAM."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
"Wymień elementy zestawu w raporcie, wyłącz tę opcję, aby znacznie "
"przyspieszyć raportowanie."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
"Lista dostępnych interfejsów sieciowych wyzwalających uruchomienie banIP." "Lista dostępnych interfejsów sieciowych wyzwalających uruchomienie banIP."
@ -402,60 +397,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "Wymień elementy określonego zestawu związanego z banIP." msgstr "Wymień elementy określonego zestawu związanego z banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "Liczba dziennika" msgstr "Liczba dziennika"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "Rejestrowanie przekazywania LAN" msgstr "Rejestrowanie przekazywania LAN"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "Limit dziennika" msgstr "Limit dziennika"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "Ustawienia dziennika" msgstr "Ustawienia dziennika"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "Warunki dziennika" msgstr "Warunki dziennika"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "Rejestrowanie przekazywania WAN" msgstr "Rejestrowanie przekazywania WAN"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "Rejestrowanie wejścia WAN" msgstr "Rejestrowanie wejścia WAN"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "Rejestruj podejrzane przekazane pakiety LAN (odrzucone)." msgstr "Rejestruj podejrzane przekazane pakiety LAN (odrzucone)."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "Rejestruj podejrzane przekazane pakiety WAN (porzucone)." msgstr "Rejestruj podejrzane przekazane pakiety WAN (porzucone)."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "Rejestruj podejrzane przychodzące pakiety WAN (porzucone)." msgstr "Rejestruj podejrzane przychodzące pakiety WAN (porzucone)."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "Maksymalna liczba otwartych plików" msgstr "Maksymalna liczba otwartych plików"
#: 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "Urządzenia sieciowe" msgstr "Urządzenia sieciowe"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "Interfejsy sieciowe" msgstr "Interfejsy sieciowe"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "Poziom nice" msgstr "Poziom nice"
@ -472,18 +475,18 @@ msgstr "Nie ma jeszcze dzienników zapory związanych z banIP!"
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "Nie ma jeszcze dzienników przetwarzania związanych z banIP!" msgstr "Nie ma jeszcze dzienników przetwarzania związanych z banIP!"
#: 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "Normalny priorytet (domyślny)" msgstr "Normalny priorytet (domyślny)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
"Liczba nieudanych prób logowania z tego samego adresu IP w dzienniku przed " "Liczba nieudanych prób logowania z tego samego adresu IP w dzienniku przed "
"zablokowaniem." "zablokowaniem."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -495,7 +498,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Przegląd" msgstr "Przegląd"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
"Analizuj tylko ostatnią podaną liczbę wpisów w dzienniku w poszukiwaniu " "Analizuj tylko ostatnią podaną liczbę wpisów w dzienniku w poszukiwaniu "
@ -505,12 +508,12 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "Dziennik przetwarzania" msgstr "Dziennik przetwarzania"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
"Profil używany przez \"msmtp\" dla wiadomości e-mail z powiadomieniem banIP." "Profil używany przez \"msmtp\" dla wiadomości e-mail z powiadomieniem banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -522,23 +525,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "Odśwież" msgstr "Odśwież"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "Przeładuj" msgstr "Przeładuj"
#: 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "Katalog raportu" msgstr "Katalog raportu"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "Elementy raportu" msgstr "Elementy raportu"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "Restartuj" msgstr "Restartuj"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
"Ogranicz dostęp do Internetu z/do niewielkiej liczby bezpiecznych adresów IP." "Ogranicz dostęp do Internetu z/do niewielkiej liczby bezpiecznych adresów IP."
@ -548,11 +551,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Wynik" msgstr "Wynik"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "Flagi uruchomieniowe" msgstr "Flagi uruchomieniowe"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "Informacje uruchomieniowe" msgstr "Informacje uruchomieniowe"
@ -564,23 +567,23 @@ msgstr "Szukaj"
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "Przeszukaj zestawy związane z banIP dla określonego adresu IP." msgstr "Przeszukaj zestawy związane z banIP dla określonego adresu IP."
#: 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "Wybierz jedno ze wstępnie skonfigurowanych narzędzi do pobierania." msgstr "Wybierz jedno ze wstępnie skonfigurowanych narzędzi do pobierania."
#: 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "Wybierz urządzenie(a) sieciowe WAN." msgstr "Wybierz urządzenie(a) sieciowe WAN."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "Wybierz logiczne interfejsy sieciowe IPv4 WAN." msgstr "Wybierz logiczne interfejsy sieciowe IPv4 WAN."
#: 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "Wybierz logiczne interfejsy sieciowe IPv6 WAN." msgstr "Wybierz logiczne interfejsy sieciowe IPv6 WAN."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "Adres nadawcy wiadomości e-mail z powiadomieniem banIP." msgstr "Adres nadawcy wiadomości e-mail z powiadomieniem banIP."
@ -589,11 +592,15 @@ msgstr "Adres nadawcy wiadomości e-mail z powiadomieniem banIP."
msgid "Set" msgid "Set"
msgstr "Zestaw" msgstr "Zestaw"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "Raportowanie zestawu" msgstr "Raportowanie zestawu"
#: 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "Rozmiar podziału zestawu" msgstr "Rozmiar podziału zestawu"
@ -609,7 +616,7 @@ msgstr "Badanie zestawu..."
msgid "Set details" msgid "Set details"
msgstr "Szczegóły zestawu" msgstr "Szczegóły zestawu"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -617,25 +624,33 @@ msgstr ""
"Ustaw priorytet łańcucha nft w tabeli banIP. Uwaga: niższe wartości " "Ustaw priorytet łańcucha nft w tabeli banIP. Uwaga: niższe wartości "
"oznaczają wyższy priorytet." "oznaczają wyższy priorytet."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "Ustawienia" msgstr "Ustawienia"
#: 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
"Podziel ładowanie zestawu zewnętrznego po każdych n członkach, aby " "Podziel ładowanie zestawu zewnętrznego po każdych n członkach, aby "
"zaoszczędzić pamięć RAM." "zaoszczędzić pamięć RAM."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "Interfejs wyzwalacza uruchamiania" msgstr "Interfejs wyzwalacza uruchamiania"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "Status" msgstr "Status"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "Zatrzymaj" msgstr "Zatrzymaj"
@ -643,17 +658,17 @@ msgstr "Zatrzymaj"
msgid "Survey" msgid "Survey"
msgstr "Badanie" msgstr "Badanie"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "Informacje systemowe" msgstr "Informacje systemowe"
#: 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "Katalog docelowy dla plików raportów związanych z IPSet." 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "Katalog docelowy dla kopii zapasowych skompresowanej listy źródeł." msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
msgid "The allowlist is too big, unable to save modifications." msgid "The allowlist is too big, unable to save modifications."
@ -663,7 +678,7 @@ msgstr "Lista dozwolonych jest za duża, nie można zapisać zmian."
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "Lista zablokowanych jest za duża, nie można zapisać zmian." msgstr "Lista zablokowanych jest za duża, nie można zapisać zmian."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -671,7 +686,7 @@ msgstr ""
"Domyślne terminy/wyrażenia regularne dziennika filtrują podejrzany ruch ssh, " "Domyślne terminy/wyrażenia regularne dziennika filtrują podejrzany ruch ssh, "
"LuCI, nginx i asterisk." "LuCI, nginx i asterisk."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "Wybrany priorytet będzie używany do przetwarzania banIP w tle." msgstr "Wybrany priorytet będzie używany do przetwarzania banIP w tle."
@ -721,11 +736,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "Sygnatura czasowa" msgstr "Sygnatura czasowa"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "Temat dla wiadomości e-mail z powiadomieniem banIP." msgstr "Temat dla wiadomości e-mail z powiadomieniem banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Opóźnienie wyzwalacza" msgstr "Opóźnienie wyzwalacza"
@ -734,11 +749,11 @@ msgstr "Opóźnienie wyzwalacza"
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "Nie można zapisać modyfikacji: %s" msgstr "Nie można zapisać modyfikacji: %s"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Pełne rejestrowanie debugowania" msgstr "Pełne rejestrowanie debugowania"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "Wersja" msgstr "Wersja"
@ -746,7 +761,7 @@ msgstr "Wersja"
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "Przekazywanie WAN (pakiety)" msgstr "Przekazywanie WAN (pakiety)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "Łańcuch przekazywania WAN" msgstr "Łańcuch przekazywania WAN"
@ -754,10 +769,18 @@ msgstr "Łańcuch przekazywania WAN"
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "Wejście WAN (pakiety)" msgstr "Wejście WAN (pakiety)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "Łańcuch wejścia WAN" msgstr "Łańcuch wejścia WAN"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "dzisiaj automatycznie dodany do listy dozwolonych" msgstr "dzisiaj automatycznie dodany do listy dozwolonych"
@ -770,6 +793,58 @@ msgstr "dzisiaj automatycznie dodany do listy zablokowanych"
msgid "banIP" msgid "banIP"
msgstr "banIP" msgstr "banIP"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Active Interfaces"
#~ msgstr "Aktywne interfejsy"
#~ msgid ""
#~ "List Set elements in the report, disable this to speed up the report "
#~ "significantly."
#~ msgstr ""
#~ "Wymień elementy zestawu w raporcie, wyłącz tę opcję, aby znacznie "
#~ "przyspieszyć raportowanie."
#~ msgid "Target directory for IPSet related report files."
#~ msgstr "Katalog docelowy dla plików raportów związanych z IPSet."
#~ msgid "Target directory for compressed source list backups."
#~ msgstr "Katalog docelowy dla kopii zapasowych skompresowanej listy źródeł."
#~ msgid "" #~ msgid ""
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes " #~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
#~ "take effect." #~ "take effect."

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "ASNs" msgstr "ASNs"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "Aparelhos ativos" msgstr "Aparelhos ativos"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr "Interfaces ativas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "Sub-redes ativas" msgstr "Sub-redes ativas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,43 +105,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Deteção automática" msgstr "Deteção automática"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Diretório do Backup" msgstr "Diretório do Backup"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -155,7 +151,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -164,11 +160,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Cancelar" msgstr "Cancelar"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -181,59 +177,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "Países" msgstr "Países"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
msgstr "Não verificar os certificados de SSL do servidor durante a descarrega." msgstr "Não verificar os certificados de SSL do servidor durante a descarrega."
#: 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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Descarregar inseguro" msgstr "Descarregar inseguro"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "Parâmetros de Descarregamento" msgstr "Parâmetros de Descarregamento"
#: 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "Ferramenta para Descarregar" msgstr "Ferramenta para Descarregar"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "Perfil de e-mail" msgstr "Perfil de e-mail"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "Endereço de e-mail do destinatário" msgstr "Endereço de e-mail do destinatário"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "Endereço de e-mail do remetente" msgstr "Endereço de e-mail do remetente"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "Assunto do e-mail" msgstr "Assunto do e-mail"
@ -245,7 +241,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -253,31 +249,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "Ative o serviço banIP." msgstr "Ative o serviço banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "Ativado" msgstr "Ativado"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -285,7 +281,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "Configurações gerais" msgstr "Configurações gerais"
@ -293,11 +289,11 @@ msgstr "Configurações gerais"
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "Conceda acesso à app LuCI banIP" msgstr "Conceda acesso à app LuCI banIP"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "Alta prioridade" msgstr "Alta prioridade"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "Máxima Prioridade" msgstr "Máxima Prioridade"
@ -309,21 +305,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "Suporte ao IPv4" msgstr "Suporte ao IPv4"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "Suporte de IPv6" msgstr "Suporte de IPv6"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "Informação" msgstr "Informação"
@ -331,45 +327,45 @@ msgstr "Informação"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
msgstr "Última Execução" msgstr "Última Execução"
#: 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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "Mínima Prioridade" msgstr "Mínima Prioridade"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "Menor Prioridade" msgstr "Menor Prioridade"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." 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." "Lista de interfaces de rede disponíveis para acionar o início do banIP."
@ -378,60 +374,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "Limite do Registo" msgstr "Limite do Registo"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "Termos do registo" msgstr "Termos do registo"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "Interfaces de Rede" msgstr "Interfaces de Rede"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -448,16 +452,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "Prioridade Normal (padrão)" msgstr "Prioridade Normal (padrão)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -467,7 +471,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Visão Geral" msgstr "Visão Geral"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
"Analise apenas o último número declarado das entradas de registo na busca " "Analise apenas o último número declarado das entradas de registo na busca "
@ -477,11 +481,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "O perfil usado pelo 'msmtp' para os e-mails de notificação do banIP." 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/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -491,23 +495,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "Atualizar" msgstr "Atualizar"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "Recarregar" msgstr "Recarregar"
#: 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "Diretório de Relatórios" msgstr "Diretório de Relatórios"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "Reiniciar" msgstr "Reiniciar"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -516,11 +520,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Resultado" msgstr "Resultado"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "Flags de Execução" msgstr "Flags de Execução"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "Informações de Execução" msgstr "Informações de Execução"
@ -532,23 +536,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "Endereço do remetente para os e-mails de notificação do banIP." msgstr "Endereço do remetente para os e-mails de notificação do banIP."
@ -557,11 +561,15 @@ msgstr "Endereço do remetente para os e-mails de notificação do banIP."
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -577,29 +585,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "Configurações" msgstr "Configurações"
#: 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "Interface do Gatilho de Inicialização" msgstr "Interface do Gatilho de Inicialização"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -607,18 +623,17 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:357 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "O diretório de destino para os backups compactados da lista de origem." msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
msgid "The allowlist is too big, unable to save modifications." msgid "The allowlist is too big, unable to save modifications."
@ -628,13 +643,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -672,11 +687,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "Marca de Tempo" msgstr "Marca de Tempo"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "Tópico para e-mails de notificação do banIP." msgstr "Tópico para e-mails de notificação do banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Atraso do Gatilho" msgstr "Atraso do Gatilho"
@ -685,11 +700,11 @@ msgstr "Atraso do Gatilho"
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Registos detalhados de depuração" msgstr "Registos detalhados de depuração"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -697,7 +712,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -705,10 +720,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -721,6 +744,54 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "banIP" msgstr "banIP"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Active Interfaces"
#~ msgstr "Interfaces ativas"
#~ msgid "Target directory for IPSet related report files."
#~ msgstr ""
#~ "Pasta de destino para ficheiros de relatório relacionados ao conjunto de "
#~ "IPs."
#~ msgid "Target directory for compressed source list backups."
#~ msgstr ""
#~ "O diretório de destino para os backups compactados da lista de origem."
#~ msgid "" #~ msgid ""
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes " #~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
#~ "take effect." #~ "take effect."

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "ASNs" msgstr "ASNs"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "Dispositivos Ativos" msgstr "Dispositivos Ativos"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr "Interfaces Ativas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "Sub-redes Ativas" msgstr "Sub-redes Ativas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,43 +105,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Detecção Automática" msgstr "Detecção Automática"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Diretório da cópia de segurança" msgstr "Diretório da cópia de segurança"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -155,7 +151,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -164,11 +160,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Cancelar" msgstr "Cancelar"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -181,59 +177,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "Países" msgstr "Países"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
msgstr "Não verifique os certificados do servidor SSL durante o download." msgstr "Não verifique os certificados do servidor SSL durante o download."
#: 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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Download inseguro" msgstr "Download inseguro"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "Parâmetros de Download" msgstr "Parâmetros de Download"
#: 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "Ferramenta para Baixar" msgstr "Ferramenta para Baixar"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "E-Mail do Perfil" msgstr "E-Mail do Perfil"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "Endereço de E-Mail do Destinatário" msgstr "Endereço de E-Mail do Destinatário"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "Endereço de E-Mail do Remetente" msgstr "Endereço de E-Mail do Remetente"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "Assunto do E-Mail" msgstr "Assunto do E-Mail"
@ -245,7 +241,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -253,31 +249,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "Ative o serviço banIP." msgstr "Ative o serviço banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "Ativado" msgstr "Ativado"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -285,7 +281,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "Configurações gerais" msgstr "Configurações gerais"
@ -293,11 +289,11 @@ msgstr "Configurações gerais"
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "Conceda acesso ao aplicativo LuCI banIP" msgstr "Conceda acesso ao aplicativo LuCI banIP"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "Alta prioridade" msgstr "Alta prioridade"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "Máxima Prioridade" msgstr "Máxima Prioridade"
@ -309,21 +305,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "Suporte ao IPv4" msgstr "Suporte ao IPv4"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "Suporte ao IPv6" msgstr "Suporte ao IPv6"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "Informações" msgstr "Informações"
@ -331,45 +327,45 @@ msgstr "Informações"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
msgstr "Última Execução" msgstr "Última Execução"
#: 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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "Mínima Prioridade" msgstr "Mínima Prioridade"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "Menor Prioridade" msgstr "Menor Prioridade"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." 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." "Lista de interfaces de rede disponíveis para acionar o início do banIP."
@ -378,60 +374,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "Limite do Registro" msgstr "Limite do Registro"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "Termos do registro" msgstr "Termos do registro"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "Interfaces de Rede" msgstr "Interfaces de Rede"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -448,16 +452,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "Prioridade Normal (padrão)" msgstr "Prioridade Normal (padrão)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -467,7 +471,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Visão geral" msgstr "Visão geral"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
"Analise apenas o último número declarado das entradas de registro na busca " "Analise apenas o último número declarado das entradas de registro na busca "
@ -477,11 +481,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "O perfil usado pelo 'msmtp' para os e-mails de notificação do banIP." 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/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -491,23 +495,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "Atualizar" msgstr "Atualizar"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "Recarregar" msgstr "Recarregar"
#: 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "Diretório do Relatório" msgstr "Diretório do Relatório"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "Reiniciar" msgstr "Reiniciar"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -516,11 +520,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Resultado" msgstr "Resultado"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "Executar Flags" msgstr "Executar Flags"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "Informações de Execução" msgstr "Informações de Execução"
@ -532,23 +536,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "Endereço do remetente para os e-mails de notificação do banIP." msgstr "Endereço do remetente para os e-mails de notificação do banIP."
@ -557,11 +561,15 @@ msgstr "Endereço do remetente para os e-mails de notificação do banIP."
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -577,29 +585,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "Configurações" msgstr "Configurações"
#: 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "Interface do Gatilho de Inicialização" msgstr "Interface do Gatilho de Inicialização"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -607,18 +623,17 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:357 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "O diretório de destino para os backups compactados da lista de origem." msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
msgid "The allowlist is too big, unable to save modifications." msgid "The allowlist is too big, unable to save modifications."
@ -628,13 +643,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -672,11 +687,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "Marca de Tempo" msgstr "Marca de Tempo"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "Tópico para e-mails de notificação do banIP." msgstr "Tópico para e-mails de notificação do banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Gatilho de Atraso" msgstr "Gatilho de Atraso"
@ -685,11 +700,11 @@ msgstr "Gatilho de Atraso"
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Registros Detalhados de Depuração" msgstr "Registros Detalhados de Depuração"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -697,7 +712,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -705,10 +720,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -721,6 +744,54 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "Banir IP" msgstr "Banir IP"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Active Interfaces"
#~ msgstr "Interfaces Ativas"
#~ msgid "Target directory for IPSet related report files."
#~ msgstr ""
#~ "Pasta de destino para arquivos de relatório relacionados ao conjunto de "
#~ "IPs."
#~ msgid "Target directory for compressed source list backups."
#~ msgstr ""
#~ "O diretório de destino para os backups compactados da lista de origem."
#~ msgid "" #~ msgid ""
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes " #~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
#~ "take effect." #~ "take effect."

View file

@ -15,94 +15,90 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "-- Selecția setului --" msgstr "-- Selecția setului --"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "-100" msgstr "-100"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "-200 (implicit)" msgstr "-200 (implicit)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "-300" msgstr "-300"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "-400" msgstr "-400"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
msgstr "0" msgstr "0"
#: 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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "100 (implicit)" msgstr "100 (implicit)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "1000" msgstr "1000"
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "1024 (implicit)" msgstr "1024 (implicit)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "2048" msgstr "2048"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
msgstr "250" msgstr "250"
#: 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:335
msgid "4096" msgid "4096"
msgstr "4096" msgstr "4096"
#: 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:457
msgid "50" msgid "50"
msgstr "50" msgstr "50"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "500" msgstr "500"
#: 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:332
msgid "512" msgid "512"
msgstr "512" msgstr "512"
#: 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:536
msgid "ASNs" msgid "ASNs"
msgstr "ASNs" msgstr "ASNs"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "Dispozitive active" msgstr "Dispozitive active"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "Fluxuri active" msgstr "Fluxuri active"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr "Interfețe active"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "Subrețele active" msgstr "Subrețele active"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
"Întârziere suplimentară de declanșare în secunde înainte de începerea " "Întârziere suplimentară de declanșare în secunde înainte de începerea "
"efectivă a procesării banIP." "efectivă a procesării banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Setări avansate" msgstr "Setări avansate"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "Doar Allowlist" msgstr "Doar Allowlist"
@ -114,44 +110,44 @@ msgstr ""
"Modificările Allowlist au fost salvate, reporniți banIP pentru ca " "Modificările Allowlist au fost salvate, reporniți banIP pentru ca "
"modificările să intre în vigoare." "modificările să intre în vigoare."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "Allowlist Automată" msgstr "Allowlist Automată"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "Lista de blocare automată" msgstr "Lista de blocare automată"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Detecție automată" msgstr "Detecție automată"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "Transferă automat IP-urile suspecte în lista de blocare banIP." msgstr "Transferă automat IP-urile suspecte în lista de blocare banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" msgstr ""
"Transferă automat IP-urile de legătură ascendentă în lista de permise banIP." "Transferă automat IP-urile de legătură ascendentă în lista de permise banIP."
#: 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Director copie de siguranţă" msgstr "Director copie de siguranţă"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "Director de bază" msgstr "Director de bază"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "Directorul de lucru de bază în timpul procesării banIP." msgstr "Directorul de lucru de bază în timpul procesării 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "Expirarea listei de blocuri" msgstr "Expirarea listei de blocuri"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "Fluxuri de lista de blocuri" msgstr "Fluxuri de lista de blocuri"
@ -163,7 +159,7 @@ msgstr ""
"Modificările la Blocklist au fost salvate, reporniți banIP pentru ca " "Modificările la Blocklist au fost salvate, reporniți banIP pentru ca "
"modificările să intre în vigoare." "modificările să intre în vigoare."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "CPU Cores" msgstr "CPU Cores"
@ -172,11 +168,11 @@ msgstr "CPU Cores"
msgid "Cancel" msgid "Cancel"
msgstr "Anulare" msgstr "Anulare"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "Prioritatea Chain" msgstr "Prioritatea Chain"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "Chain/Set de setări" msgstr "Chain/Set de setări"
@ -194,11 +190,11 @@ msgstr ""
"master/net/banip/files/README.md\" target=\"_blank\" rel=\"noreferrer " "master/net/banip/files/README.md\" target=\"_blank\" rel=\"noreferrer "
"noopener\" >consultați documentația online</a>" "noopener\" >consultați documentația online</a>"
#: 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:526
msgid "Countries" msgid "Countries"
msgstr "Țări" msgstr "Țări"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
@ -206,11 +202,11 @@ msgstr ""
"Deduplicați adresele IP în toate seturile active și faceți ordine în lista " "Deduplicați adresele IP în toate seturile active și faceți ordine în lista "
"de blocuri locale." "de blocuri locale."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "Deduplicați IP-uri" msgstr "Deduplicați IP-uri"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
@ -218,39 +214,39 @@ msgstr ""
"Detectarea automată a dispozitivelor de rețea, interfețelor, subrețelelor, " "Detectarea automată a dispozitivelor de rețea, interfețelor, subrețelelor, "
"protocoalelor și utilităților relevante." "protocoalelor și utilităților relevante."
#: 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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
msgstr "Nu verificați certificatele serverului SSL în timpul descărcării." msgstr "Nu verificați certificatele serverului SSL în timpul descărcării."
#: 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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Descărcați Insecure" msgstr "Descărcați Insecure"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "Parametrii de descărcare" msgstr "Parametrii de descărcare"
#: 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "Utilitar descărcare" msgstr "Utilitar descărcare"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "Profil de e-mail" msgstr "Profil de e-mail"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "Adresa de e-mail a destinatarului" msgstr "Adresa de e-mail a destinatarului"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "Adresa expeditorului de e-mail" msgstr "Adresa expeditorului de e-mail"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "Setări e-mail" msgstr "Setări e-mail"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "Subiect E-Mail" msgstr "Subiect E-Mail"
@ -262,7 +258,7 @@ msgstr "Editați Allowlist"
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "Editarea listei de blocuri" msgstr "Editarea listei de blocuri"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "Număr de elemente" msgstr "Număr de elemente"
@ -270,34 +266,34 @@ msgstr "Număr de elemente"
msgid "Elements" msgid "Elements"
msgstr "Elemente" msgstr "Elemente"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "Activați serviciul banIP." msgstr "Activați serviciul banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
"Activați înregistrarea verbală a depanării în caz de erori de procesare." "Activați înregistrarea verbală a depanării în caz de erori de procesare."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "Activat" msgstr "Activat"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "Activează suportul IPv4." msgstr "Activează suportul IPv4."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "Activează suportul IPv6." msgstr "Activează suportul IPv6."
#: 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" msgstr ""
"Timpul de expirare pentru membrii setului de liste de blocare adăugate " "Timpul de expirare pentru membrii setului de liste de blocare adăugate "
"automat." "automat."
#: 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "Selecția Feed" msgstr "Selecția Feed"
@ -305,7 +301,7 @@ msgstr "Selecția Feed"
msgid "Firewall Log" msgid "Firewall Log"
msgstr "Jurnal Firewall" msgstr "Jurnal Firewall"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "Setări generale" msgstr "Setări generale"
@ -313,11 +309,11 @@ msgstr "Setări generale"
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "Acordarea accesului la aplicația LuCI banIP" msgstr "Acordarea accesului la aplicația LuCI banIP"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "Prioritate ridicată" msgstr "Prioritate ridicată"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "Cea mai mare prioritate" msgstr "Cea mai mare prioritate"
@ -329,15 +325,15 @@ msgstr "Căutare IP"
msgid "IP Search..." msgid "IP Search..."
msgstr "Căutare IP..." msgstr "Căutare IP..."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "Suport IPv4" msgstr "Suport IPv4"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "Suport IPv6" msgstr "Suport IPv6"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
@ -345,7 +341,7 @@ msgstr ""
"Creșteți numărul maxim de fișiere deschise, de exemplu, pentru a gestiona " "Creșteți numărul maxim de fișiere deschise, de exemplu, pentru a gestiona "
"numărul de fișiere divizate temporar în timpul încărcării seturilor." "numărul de fișiere divizate temporar în timpul încărcării seturilor."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "Informație" msgstr "Informație"
@ -353,45 +349,45 @@ msgstr "Informație"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "LAN-Forward (pachete)" msgstr "LAN-Forward (pachete)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "Chain LAN-Forward" msgstr "Chain LAN-Forward"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
msgstr "Ultima rulare" msgstr "Ultima rulare"
#: 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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "Cea mai mică prioritate" msgstr "Cea mai mică prioritate"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "Prioritate mai mică" msgstr "Prioritate mai mică"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "Limitați anumite fluxuri la lanțul LAN-Forward." msgstr "Limitați anumite fluxuri la lanțul LAN-Forward."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "Limitați anumite fluxuri la lanțul WAN-Forward." msgstr "Limitați anumite fluxuri la lanțul WAN-Forward."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "Limitarea anumitor fluxuri în lanțul WAN-Input." msgstr "Limitarea anumitor fluxuri în lanțul WAN-Input."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "Limitați nucleele CPU utilizate de banIP pentru a economisi RAM." msgstr "Limitați nucleele CPU utilizate de banIP pentru a economisi RAM."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
"Lista interfețelor de rețea disponibile pentru a declanșa pornirea banIP." "Lista interfețelor de rețea disponibile pentru a declanșa pornirea banIP."
@ -400,60 +396,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "Enumeră elementele unui anumit set legat de banIP." msgstr "Enumeră elementele unui anumit set legat de banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "Număr de jurnale" msgstr "Număr de jurnale"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "Jurnalul LAN-Forward" msgstr "Jurnalul LAN-Forward"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "Limita de jurnal" msgstr "Limita de jurnal"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "Setări jurnal" msgstr "Setări jurnal"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "Termeni de jurnal" msgstr "Termeni de jurnal"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "Jurnal WAN-Forward" msgstr "Jurnal WAN-Forward"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "Jurnal WAN-Input" msgstr "Jurnal WAN-Input"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "Înregistrați pachetele LAN suspecte transmise (respinse)." msgstr "Înregistrați pachetele LAN suspecte transmise (respinse)."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "Jurnalul pachetelor WAN suspicioase transmise (abandonate)." msgstr "Jurnalul pachetelor WAN suspicioase transmise (abandonate)."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "Înregistrare a pachetelor WAN suspecte de intrare (abandonate)." msgstr "Înregistrare a pachetelor WAN suspecte de intrare (abandonate)."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "Maxim de fișiere deschise" msgstr "Maxim de fișiere deschise"
#: 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "Dispozitive de rețea" msgstr "Dispozitive de rețea"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "Interfețe de rețea" msgstr "Interfețe de rețea"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "Nivel Bun" msgstr "Nivel Bun"
@ -470,18 +474,18 @@ msgstr "Nu există încă jurnale de firewall legate de banIP!"
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "Nu există încă jurnale de procesare legate de banIP!" msgstr "Nu există încă jurnale de procesare legate de banIP!"
#: 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "Prioritate normală (implicită)" msgstr "Prioritate normală (implicită)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
"Numărul de încercări de conectare eșuate ale aceluiași IP din jurnal înainte " "Numărul de încercări de conectare eșuate ale aceluiași IP din jurnal înainte "
"de blocare." "de blocare."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -493,7 +497,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Prezentare generală" msgstr "Prezentare generală"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
"Analizează numai ultimul număr declarat de intrări de jurnal pentru " "Analizează numai ultimul număr declarat de intrări de jurnal pentru "
@ -503,12 +507,12 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "Jurnal de procesare" msgstr "Jurnal de procesare"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
"Profilul utilizat de 'msmtp' pentru mesajele electronice de notificare banIP." "Profilul utilizat de 'msmtp' pentru mesajele electronice de notificare banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -520,23 +524,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "Reîmprospătare" msgstr "Reîmprospătare"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "Reîncărcați" msgstr "Reîncărcați"
#: 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "Director de rapoarte" msgstr "Director de rapoarte"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "Reporniți" msgstr "Reporniți"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
"Restricționați accesul la internet de la/către un număr mic de IP-uri " "Restricționați accesul la internet de la/către un număr mic de IP-uri "
@ -547,11 +551,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Rezultat" msgstr "Rezultat"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "Fixați indicatoarele" msgstr "Fixați indicatoarele"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "Informații despre cursă" msgstr "Informații despre cursă"
@ -563,23 +567,23 @@ msgstr "Căutați"
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "Căutați un anumit IP în seturile legate de banIP." msgstr "Căutați un anumit IP în seturile legate de banIP."
#: 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "Selectați unul dintre utilitățile de descărcare preconfigurate." msgstr "Selectați unul dintre utilitățile de descărcare preconfigurate."
#: 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "Selectați dispozitivul (dispozitivele) de rețea WAN." msgstr "Selectați dispozitivul (dispozitivele) de rețea WAN."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "Selectați interfața (interfețele) logică (logice) de rețea WAN IPv4." msgstr "Selectați interfața (interfețele) logică (logice) de rețea WAN IPv4."
#: 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "Selectați interfața (e) logică de rețea WAN IPv6." msgstr "Selectați interfața (e) logică de rețea WAN IPv6."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "Adresa expeditorului pentru e-mailurile de notificare banIP." msgstr "Adresa expeditorului pentru e-mailurile de notificare banIP."
@ -588,11 +592,15 @@ msgstr "Adresa expeditorului pentru e-mailurile de notificare banIP."
msgid "Set" msgid "Set"
msgstr "Setați" msgstr "Setați"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "Set raportare" msgstr "Set raportare"
#: 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "Setați Dimensiunea Divizată" msgstr "Setați Dimensiunea Divizată"
@ -608,7 +616,7 @@ msgstr "Setați Survey..."
msgid "Set details" msgid "Set details"
msgstr "Setați detaliile" msgstr "Setați detaliile"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
@ -616,25 +624,33 @@ msgstr ""
"Setează prioritatea lanțului nft în cadrul tabelului banIP. Vă rugăm să " "Setează prioritatea lanțului nft în cadrul tabelului banIP. Vă rugăm să "
"rețineți: valorile mai mici înseamnă o prioritate mai mare." "rețineți: valorile mai mici înseamnă o prioritate mai mare."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "Setări" msgstr "Setări"
#: 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
"Împărțiți încărcarea setului extern după fiecare n membri pentru a economisi " "Împărțiți încărcarea setului extern după fiecare n membri pentru a economisi "
"RAM." "RAM."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "Interfața de declanșare a pornirii" msgstr "Interfața de declanșare a pornirii"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "Stare" msgstr "Stare"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "Stop" msgstr "Stop"
@ -642,19 +658,17 @@ msgstr "Stop"
msgid "Survey" msgid "Survey"
msgstr "Sondaj" msgstr "Sondaj"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "Informații de sistem" msgstr "Informații de sistem"
#: 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "Directorul țintă pentru fișierele de raport legate de IPSet." 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
"Directorul de destinație pentru copiile de rezervă comprimate ale listei de "
"surse."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
msgid "The allowlist is too big, unable to save modifications." msgid "The allowlist is too big, unable to save modifications."
@ -664,7 +678,7 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
@ -672,7 +686,7 @@ msgstr ""
"Termenii de jurnal / expresiile regulate implicite filtrează traficul ssh, " "Termenii de jurnal / expresiile regulate implicite filtrează traficul ssh, "
"LuCI, nginx și asterisk suspect." "LuCI, nginx și asterisk suspect."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
"Prioritatea selectată va fi utilizată pentru procesarea în fundal a banIP." "Prioritatea selectată va fi utilizată pentru procesarea în fundal a banIP."
@ -723,11 +737,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "Înregistrarea timpului" msgstr "Înregistrarea timpului"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "Subiect pentru e-mailurile de notificare banIP." msgstr "Subiect pentru e-mailurile de notificare banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Intârzierea declanșării" msgstr "Intârzierea declanșării"
@ -736,11 +750,11 @@ msgstr "Intârzierea declanșării"
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "Imposibilitatea de a salva modificările: %s" msgstr "Imposibilitatea de a salva modificările: %s"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Jurnalizare Verbală de Depanare" msgstr "Jurnalizare Verbală de Depanare"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "Versiune" msgstr "Versiune"
@ -748,7 +762,7 @@ msgstr "Versiune"
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "WAN-Forward (pachete)" msgstr "WAN-Forward (pachete)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "Chain WAN-Forward" msgstr "Chain WAN-Forward"
@ -756,10 +770,18 @@ msgstr "Chain WAN-Forward"
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "WAN-Input (pachete)" msgstr "WAN-Input (pachete)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "Chain WAN-Input" msgstr "Chain WAN-Input"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "adăugat automat la allowlist astăzi" msgstr "adăugat automat la allowlist astăzi"
@ -772,6 +794,53 @@ msgstr "auto-adăugat la lista de blocare astăzi"
msgid "banIP" msgid "banIP"
msgstr "banIP" msgstr "banIP"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Active Interfaces"
#~ msgstr "Interfețe active"
#~ msgid "Target directory for IPSet related report files."
#~ msgstr "Directorul țintă pentru fișierele de raport legate de IPSet."
#~ msgid "Target directory for compressed source list backups."
#~ msgstr ""
#~ "Directorul de destinație pentru copiile de rezervă comprimate ale listei "
#~ "de surse."
#~ msgid "" #~ msgid ""
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes " #~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
#~ "take effect." #~ "take effect."

View file

@ -15,92 +15,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "Автономные системы" msgstr "Автономные системы"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "Активные устройства" msgstr "Активные устройства"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr "Активные интерфейсы"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "Активные подсети" msgstr "Активные подсети"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -110,43 +106,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Автоопределение" msgstr "Автоопределение"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Папка для резервных копий" msgstr "Папка для резервных копий"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -156,7 +152,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -165,11 +161,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Отмена" msgstr "Отмена"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -182,59 +178,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "Страны" msgstr "Страны"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
msgstr "Не проверять SSL сертификаты сервера во время загрузки." msgstr "Не проверять SSL сертификаты сервера во время загрузки."
#: 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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Небезопасная загрузка" msgstr "Небезопасная загрузка"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "Параметры загрузки" 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "Утилита для загрузки" msgstr "Утилита для загрузки"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "Профиль электронной почты" msgstr "Профиль электронной почты"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "Адрес получателя" msgstr "Адрес получателя"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "Адрес отправителя" msgstr "Адрес отправителя"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "Тема" msgstr "Тема"
@ -246,7 +242,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -254,31 +250,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "Включить сервис banIP." msgstr "Включить сервис banIP."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "Включено" msgstr "Включено"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -286,7 +282,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "Общие настройки" msgstr "Общие настройки"
@ -294,11 +290,11 @@ msgstr "Общие настройки"
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "Предоставить доступ LuCI к приложению banIP" msgstr "Предоставить доступ LuCI к приложению banIP"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "Высокий приоритет" msgstr "Высокий приоритет"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "Наивысший приоритет" msgstr "Наивысший приоритет"
@ -310,21 +306,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "Поддержка iPv4" msgstr "Поддержка iPv4"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "Поддержка IPv6" msgstr "Поддержка IPv6"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "Информация" msgstr "Информация"
@ -332,45 +328,45 @@ msgstr "Информация"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "Наименьший приоритет" msgstr "Наименьший приоритет"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "Меньший приоритет" msgstr "Меньший приоритет"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
#, fuzzy #, fuzzy
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "Список доступных сетевых интерфейсов запускающих banIP." msgstr "Список доступных сетевых интерфейсов запускающих banIP."
@ -379,60 +375,68 @@ msgstr "Список доступных сетевых интерфейсов з
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "Сетевые интерфейсы" msgstr "Сетевые интерфейсы"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -449,16 +453,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -468,7 +472,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Обзор" msgstr "Обзор"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -476,11 +480,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -490,23 +494,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "Обновить" msgstr "Обновить"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "Перезапустить" 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "Папка для отчётов" msgstr "Папка для отчётов"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "Перезапустить" msgstr "Перезапустить"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -515,11 +519,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Результат" msgstr "Результат"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "Флаги запуска" msgstr "Флаги запуска"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "" msgstr ""
@ -531,23 +535,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -556,11 +560,15 @@ msgstr ""
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -576,29 +584,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "Настройки" 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "Интерфейс для запуска" msgstr "Интерфейс для запуска"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -606,16 +622,16 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
@ -626,13 +642,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -670,11 +686,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Задержка запуска" msgstr "Задержка запуска"
@ -683,11 +699,11 @@ msgstr "Задержка запуска"
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Подробный журнал отладки" msgstr "Подробный журнал отладки"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -695,7 +711,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -703,10 +719,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -719,6 +743,45 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "banIP" msgstr "banIP"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Active Interfaces"
#~ msgstr "Активные интерфейсы"
#~ msgid "" #~ msgid ""
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes " #~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
#~ "take effect." #~ "take effect."

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,43 +105,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Záložný priečinok" msgstr "Záložný priečinok"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -155,7 +151,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -164,11 +160,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -181,59 +177,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "Nástroj na sťahovanie" msgstr "Nástroj na sťahovanie"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -245,7 +241,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -253,31 +249,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "Zapnuté" msgstr "Zapnuté"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -285,7 +281,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
@ -293,11 +289,11 @@ msgstr ""
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "" msgstr ""
@ -309,21 +305,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "" msgstr ""
@ -331,45 +327,45 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -377,60 +373,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -447,16 +451,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -466,7 +470,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Prehľad" msgstr "Prehľad"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -474,11 +478,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -488,23 +492,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "" 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -513,11 +517,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "" msgstr ""
@ -529,23 +533,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -554,11 +558,15 @@ msgstr ""
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -574,29 +582,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "Nastavenia" msgstr "Nastavenia"
#: 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -604,16 +620,16 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
@ -624,13 +640,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -668,11 +684,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -681,11 +697,11 @@ msgstr ""
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -693,7 +709,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -701,10 +717,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -717,6 +741,42 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Active Sources" #~ msgid "Active Sources"
#~ msgstr "Aktívne zdroje" #~ msgstr "Aktívne zdroje"

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "ASN:er" msgstr "ASN:er"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "Aktiva enheter" msgstr "Aktiva enheter"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr "Aktiva gränssnitt"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "Aktiva undernät" msgstr "Aktiva undernät"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,43 +105,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Automatisk detektering" msgstr "Automatisk detektering"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Säkerhetskopiera mapp" msgstr "Säkerhetskopiera mapp"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -155,7 +151,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -164,11 +160,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Avbryt" msgstr "Avbryt"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -181,59 +177,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Ladda ner osäkert" msgstr "Ladda ner osäkert"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "Ladda ner parametrar" msgstr "Ladda ner parametrar"
#: 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "Ladda ner verktyget" msgstr "Ladda ner verktyget"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "E-postprofil" msgstr "E-postprofil"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "Avsändaradress för e-post" msgstr "Avsändaradress för e-post"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "E-postämne" msgstr "E-postämne"
@ -245,7 +241,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -253,31 +249,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "Aktiverad" msgstr "Aktiverad"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -285,7 +281,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "Generella inställningar" msgstr "Generella inställningar"
@ -293,11 +289,11 @@ msgstr "Generella inställningar"
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "" msgstr ""
@ -309,21 +305,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "" msgstr ""
@ -331,45 +327,45 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
msgstr "Kördes senast" msgstr "Kördes senast"
#: 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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -377,60 +373,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -447,16 +451,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -466,7 +470,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Överblick" msgstr "Överblick"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -474,11 +478,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -488,23 +492,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "Uppdatera" msgstr "Uppdatera"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "Ladda om" msgstr "Ladda om"
#: 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "Rapportkatalog" msgstr "Rapportkatalog"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "Starta om" msgstr "Starta om"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -513,11 +517,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Resultat" msgstr "Resultat"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "Förflaggor" msgstr "Förflaggor"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "" msgstr ""
@ -529,23 +533,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -554,11 +558,15 @@ msgstr ""
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -574,29 +582,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "Inställningar" msgstr "Inställningar"
#: 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -604,16 +620,16 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
@ -624,13 +640,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -668,11 +684,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -681,11 +697,11 @@ msgstr ""
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -693,7 +709,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -701,10 +717,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -717,6 +741,45 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Active Interfaces"
#~ msgstr "Aktiva gränssnitt"
#~ msgid "-m limit --limit 2/sec (default)" #~ msgid "-m limit --limit 2/sec (default)"
#~ msgstr "-m limit --limit 2/sek (standard)" #~ msgstr "-m limit --limit 2/sek (standard)"

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "Vifaa Vinavyotumika" msgstr "Vifaa Vinavyotumika"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr "Interfaces Zinazofanya Kazi"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "Subnets zinazotumika" msgstr "Subnets zinazotumika"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,43 +105,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -155,7 +151,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -164,11 +160,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -181,59 +177,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -245,7 +241,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -253,31 +249,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -285,7 +281,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
@ -293,11 +289,11 @@ msgstr ""
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "" msgstr ""
@ -309,21 +305,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "" msgstr ""
@ -331,45 +327,45 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -377,60 +373,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -447,16 +451,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -466,7 +470,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -474,11 +478,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -488,23 +492,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "" 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -513,11 +517,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "" msgstr ""
@ -529,23 +533,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -554,11 +558,15 @@ msgstr ""
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -574,29 +582,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "" 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -604,16 +620,16 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
@ -624,13 +640,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -668,11 +684,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -681,11 +697,11 @@ msgstr ""
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -693,7 +709,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -701,10 +717,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -717,6 +741,45 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Active Interfaces"
#~ msgstr "Interfaces Zinazofanya Kazi"
#~ msgid "Action" #~ msgid "Action"
#~ msgstr "Hatua" #~ msgstr "Hatua"

View file

@ -5,92 +5,88 @@ msgstr "Content-Type: text/plain; charset=UTF-8"
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -100,43 +96,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -146,7 +142,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -155,11 +151,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -172,59 +168,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -236,7 +232,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -244,31 +240,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -276,7 +272,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
@ -284,11 +280,11 @@ msgstr ""
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "" msgstr ""
@ -300,21 +296,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "" msgstr ""
@ -322,45 +318,45 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -368,60 +364,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -438,16 +442,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -457,7 +461,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -465,11 +469,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -479,23 +483,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "" 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -504,11 +508,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "" msgstr ""
@ -520,23 +524,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -545,11 +549,15 @@ msgstr ""
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -565,29 +573,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "" 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -595,16 +611,16 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
@ -615,13 +631,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -659,11 +675,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "" msgstr ""
@ -672,11 +688,11 @@ msgstr ""
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -684,7 +700,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -692,10 +708,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -707,3 +731,39 @@ msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:3 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:3
msgid "banIP" msgid "banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "ASN'ler" msgstr "ASN'ler"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "Aktif Cihazlar" msgstr "Aktif Cihazlar"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr "Aktif Arayüzler"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "Etkin Alt Ağlar" msgstr "Etkin Alt Ağlar"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,43 +105,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "Otomatik Algılama" msgstr "Otomatik Algılama"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Yedekleme Dizini" msgstr "Yedekleme Dizini"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -155,7 +151,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -164,11 +160,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "İptal" msgstr "İptal"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -181,59 +177,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "Ülkeler" msgstr "Ülkeler"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
msgstr "İndirme sırasında SSL sunucu sertifikalarını kontrol etme." msgstr "İndirme sırasında SSL sunucu sertifikalarını kontrol etme."
#: 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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Güvensiz İndir" msgstr "Güvensiz İndir"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "İndirme Parametreleri" msgstr "İndirme Parametreleri"
#: 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "İndirme Aracı" msgstr "İndirme Aracı"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "E-Posta Profili" msgstr "E-Posta Profili"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "E-Posta Alıcı Adresi" msgstr "E-Posta Alıcı Adresi"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "E-Posta Gönderen Adresi" msgstr "E-Posta Gönderen Adresi"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "E-Posta Konusu" msgstr "E-Posta Konusu"
@ -245,7 +241,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -253,31 +249,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "BanIP hizmetini etkinleştirin." msgstr "BanIP hizmetini etkinleştirin."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "Etkin" msgstr "Etkin"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -285,7 +281,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "Genel Ayarlar" msgstr "Genel Ayarlar"
@ -293,11 +289,11 @@ msgstr "Genel Ayarlar"
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "LuCI uygulaması banIP'ye erişim izni verin" msgstr "LuCI uygulaması banIP'ye erişim izni verin"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "Yüksek öncelik" msgstr "Yüksek öncelik"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "En yüksek öncelik" msgstr "En yüksek öncelik"
@ -309,21 +305,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "IPv4 Desteği" msgstr "IPv4 Desteği"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "IPv6 Desteği" msgstr "IPv6 Desteği"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "Bilgi" msgstr "Bilgi"
@ -331,45 +327,45 @@ msgstr "Bilgi"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
msgstr "Son çalışma zamanı" msgstr "Son çalışma zamanı"
#: 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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "En Az Öncelik" msgstr "En Az Öncelik"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "Daha Az Öncelik" msgstr "Daha Az Öncelik"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "BanIP başlangıcını tetiklemek için mevcut ağ arayüzlerinin listesi." msgstr "BanIP başlangıcını tetiklemek için mevcut ağ arayüzlerinin listesi."
@ -377,60 +373,68 @@ msgstr "BanIP başlangıcını tetiklemek için mevcut ağ arayüzlerinin listes
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "Günlük Sınırı" msgstr "Günlük Sınırı"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "Günlük Şartları" msgstr "Günlük Şartları"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "Ağ arayüzleri" msgstr "Ağ arayüzleri"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -447,16 +451,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "Normal Öncelik (varsayılan)" msgstr "Normal Öncelik (varsayılan)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -466,7 +470,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Genel bakış" msgstr "Genel bakış"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
"Şüpheli olaylar için yalnızca son belirtilen günlük girişi sayısını " "Şüpheli olaylar için yalnızca son belirtilen günlük girişi sayısını "
@ -476,11 +480,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "BanIP bildirim e-postaları için 'msmtp' tarafından kullanılan profil." msgstr "BanIP bildirim e-postaları için 'msmtp' tarafından kullanılan profil."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -490,23 +494,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "Yenile" msgstr "Yenile"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "Yeniden yükle" msgstr "Yeniden yükle"
#: 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "Rapor Dizini" msgstr "Rapor Dizini"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "Yeniden başlat" msgstr "Yeniden başlat"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -515,11 +519,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Sonuç" msgstr "Sonuç"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "Bayrakları Çalıştır" msgstr "Bayrakları Çalıştır"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "Çalıştırma Bilgileri" msgstr "Çalıştırma Bilgileri"
@ -531,23 +535,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "BanIP bildirim e-postaları için gönderen adresi." msgstr "BanIP bildirim e-postaları için gönderen adresi."
@ -556,11 +560,15 @@ msgstr "BanIP bildirim e-postaları için gönderen adresi."
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -576,29 +584,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "Ayarlar" msgstr "Ayarlar"
#: 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "Başlangıç Tetikleme Arayüzü" msgstr "Başlangıç Tetikleme Arayüzü"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -606,17 +622,17 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "IPSet ile ilgili rapor dosyaları için hedef dizin." 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "Sıkıştırılmış kaynak listesi yedeklemeleri için hedef dizin." msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
msgid "The allowlist is too big, unable to save modifications." msgid "The allowlist is too big, unable to save modifications."
@ -626,13 +642,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -670,11 +686,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "Zaman damgası" msgstr "Zaman damgası"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "BanIP bildirim e-postaları için konu." msgstr "BanIP bildirim e-postaları için konu."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Tetikleme Gecikmesi" msgstr "Tetikleme Gecikmesi"
@ -683,11 +699,11 @@ msgstr "Tetikleme Gecikmesi"
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Ayrıntılı Hata Ayıklama Günlüğü" msgstr "Ayrıntılı Hata Ayıklama Günlüğü"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -695,7 +711,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -703,10 +719,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -719,6 +743,51 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "banIP" msgstr "banIP"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Active Interfaces"
#~ msgstr "Aktif Arayüzler"
#~ msgid "Target directory for IPSet related report files."
#~ msgstr "IPSet ile ilgili rapor dosyaları için hedef dizin."
#~ msgid "Target directory for compressed source list backups."
#~ msgstr "Sıkıştırılmış kaynak listesi yedeklemeleri için hedef dizin."
#~ msgid "" #~ msgid ""
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes " #~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
#~ "take effect." #~ "take effect."

View file

@ -15,92 +15,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -110,43 +106,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Тека для резервних копій" msgstr "Тека для резервних копій"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -156,7 +152,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -165,11 +161,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "Скасувати" msgstr "Скасувати"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -182,59 +178,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
msgstr "Не перевіряти SSL-сертифікати сервера під час завантаження." msgstr "Не перевіряти SSL-сертифікати сервера під час завантаження."
#: 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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "Завантажувати небезпечним шляхом" msgstr "Завантажувати небезпечним шляхом"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "Параметри завантаження" 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "Утиліта для завантаження" msgstr "Утиліта для завантаження"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "E-Mail профіль" msgstr "E-Mail профіль"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "E-Mail адреса отримувача" msgstr "E-Mail адреса отримувача"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "E-Mail адреса відправника" msgstr "E-Mail адреса відправника"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "Тема" msgstr "Тема"
@ -246,7 +242,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -254,31 +250,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -286,7 +282,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "Загальні налаштування" msgstr "Загальні налаштування"
@ -294,11 +290,11 @@ msgstr "Загальні налаштування"
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "" msgstr ""
@ -310,21 +306,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "" msgstr ""
@ -332,45 +328,45 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -378,60 +374,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -448,16 +452,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -467,7 +471,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "Огляд" msgstr "Огляд"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -475,11 +479,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -489,23 +493,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "Оновити" msgstr "Оновити"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "" 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "Тека для звітів" msgstr "Тека для звітів"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "Перезапустити" msgstr "Перезапустити"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -514,11 +518,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "Результат" msgstr "Результат"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "Прапорці запуску" msgstr "Прапорці запуску"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "" msgstr ""
@ -530,23 +534,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -555,11 +559,15 @@ msgstr ""
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -575,29 +583,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "Налаштування" 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "Інтерфейс тригера запуску" msgstr "Інтерфейс тригера запуску"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -605,16 +621,16 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
@ -625,13 +641,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -669,11 +685,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Затримка запуску" msgstr "Затримка запуску"
@ -682,11 +698,11 @@ msgstr "Затримка запуску"
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Докладний журнал відлагодження" msgstr "Докладний журнал відлагодження"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -694,7 +710,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -702,10 +718,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -718,6 +742,42 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "banIP" msgstr "banIP"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Unable to save changes: %s" #~ msgid "Unable to save changes: %s"
#~ msgstr "Не вдалося зберегти зміни: %s" #~ msgstr "Не вдалося зберегти зміни: %s"

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,43 +105,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "Thư mục sao lưu" msgstr "Thư mục sao lưu"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -155,7 +151,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -164,11 +160,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -181,59 +177,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "" 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "" msgstr ""
@ -245,7 +241,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -253,31 +249,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -285,7 +281,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
@ -293,11 +289,11 @@ msgstr ""
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "" msgstr ""
@ -309,21 +305,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "" msgstr ""
@ -331,45 +327,45 @@ msgstr ""
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "" msgstr ""
@ -377,60 +373,68 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -447,16 +451,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -466,7 +470,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "" msgstr ""
@ -474,11 +478,11 @@ msgstr ""
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -488,23 +492,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "" 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -513,11 +517,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "" msgstr ""
@ -529,23 +533,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "" msgstr ""
@ -554,11 +558,15 @@ msgstr ""
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -574,29 +582,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "" 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -604,16 +620,16 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
@ -624,13 +640,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -668,11 +684,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "Kích hoạt độ trễ" msgstr "Kích hoạt độ trễ"
@ -681,12 +697,12 @@ msgstr "Kích hoạt độ trễ"
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
#, fuzzy #, fuzzy
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "Nhật ký gỡ lỗi khởi động" msgstr "Nhật ký gỡ lỗi khởi động"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -694,7 +710,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -702,10 +718,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -718,6 +742,42 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Advanced" #~ msgid "Advanced"
#~ msgstr "Nâng cao" #~ msgstr "Nâng cao"

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "平均取样数" msgstr "平均取样数"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "活动设备" msgstr "活动设备"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr "活动接口"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "活动子网" msgstr "活动子网"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,43 +105,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "自动检测" msgstr "自动检测"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "备份目录" msgstr "备份目录"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -155,7 +151,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -164,11 +160,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "取消" msgstr "取消"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -181,59 +177,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "地区" msgstr "地区"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
msgstr "下载期间不检查 SSL 服务器证书。" msgstr "下载期间不检查 SSL 服务器证书。"
#: 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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "下载不安全" msgstr "下载不安全"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "下载参数" 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "下载工具" msgstr "下载工具"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "电子邮件概要" msgstr "电子邮件概要"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "电子邮件收件人地址" msgstr "电子邮件收件人地址"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "电子邮件发件人地址" msgstr "电子邮件发件人地址"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "电子邮件主题" msgstr "电子邮件主题"
@ -245,7 +241,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -253,31 +249,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "启用 banIP 服务。" msgstr "启用 banIP 服务。"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "已启用" msgstr "已启用"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -285,7 +281,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "常规设置" msgstr "常规设置"
@ -293,11 +289,11 @@ msgstr "常规设置"
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "授予访问 LuCI 应用 banIP 的权限" msgstr "授予访问 LuCI 应用 banIP 的权限"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "较高优先级" msgstr "较高优先级"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "最高优先级" msgstr "最高优先级"
@ -309,21 +305,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "IPv4 支持" msgstr "IPv4 支持"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "IPv6 支持" msgstr "IPv6 支持"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "信息" msgstr "信息"
@ -331,45 +327,45 @@ msgstr "信息"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "最低优先级" msgstr "最低优先级"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "较低优先级" msgstr "较低优先级"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "触发 banIP 启动的可用网络接口列表。" msgstr "触发 banIP 启动的可用网络接口列表。"
@ -377,60 +373,68 @@ msgstr "触发 banIP 启动的可用网络接口列表。"
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "日志限制" msgstr "日志限制"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "日志项" msgstr "日志项"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "网络接口" msgstr "网络接口"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -447,16 +451,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "正常优先级(默认)" msgstr "正常优先级(默认)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -466,7 +470,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "概览" msgstr "概览"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "仅解析最后声明的可疑事件的日志条目数量。" msgstr "仅解析最后声明的可疑事件的日志条目数量。"
@ -474,11 +478,11 @@ msgstr "仅解析最后声明的可疑事件的日志条目数量。"
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "“msmtp”所用的 banIP 电子邮件通知配置。" msgstr "“msmtp”所用的 banIP 电子邮件通知配置。"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -488,23 +492,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "刷新" msgstr "刷新"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "重新载入" 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "报告目录" msgstr "报告目录"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "重启" msgstr "重启"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -513,11 +517,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "结果" msgstr "结果"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "运行标记" msgstr "运行标记"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "运行信息" msgstr "运行信息"
@ -529,23 +533,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "banIP 通知邮件的发送地址。" msgstr "banIP 通知邮件的发送地址。"
@ -554,11 +558,15 @@ msgstr "banIP 通知邮件的发送地址。"
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -574,29 +582,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "设置" 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "启动触发接口" msgstr "启动触发接口"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -604,17 +620,17 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "IPSet 相关的报告文件的目标目录。" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "压缩的源列表备份的目标目录。" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
msgid "The allowlist is too big, unable to save modifications." msgid "The allowlist is too big, unable to save modifications."
@ -624,13 +640,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -668,11 +684,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "时间戳" msgstr "时间戳"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "banIP 通知邮件的主题。" msgstr "banIP 通知邮件的主题。"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "触发延时" msgstr "触发延时"
@ -681,11 +697,11 @@ msgstr "触发延时"
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "详细的调试记录" msgstr "详细的调试记录"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -693,7 +709,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -701,10 +717,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -717,6 +741,51 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "banIP" msgstr "banIP"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Active Interfaces"
#~ msgstr "活动接口"
#~ msgid "Target directory for IPSet related report files."
#~ msgstr "IPSet 相关的报告文件的目标目录。"
#~ msgid "Target directory for compressed source list backups."
#~ msgstr "压缩的源列表备份的目标目录。"
#~ msgid "" #~ msgid ""
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes " #~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
#~ "take effect." #~ "take effect."

View file

@ -14,92 +14,88 @@ msgstr ""
msgid "-- Set Selection --" msgid "-- Set Selection --"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:381 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "-100" msgid "-100"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:382 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392
msgid "-200 (default)" msgid "-200 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "-300" msgid "-300"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:394
msgid "-400" msgid "-400"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:390
msgid "0" msgid "0"
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:458
msgid "100 (default)" msgid "100 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:438 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:461
msgid "1000" msgid "1000"
msgstr "" msgstr ""
#: 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:333
msgid "1024 (default)" msgid "1024 (default)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:330 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:334
msgid "2048" msgid "2048"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:436 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:459
msgid "250" msgid "250"
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:335
msgid "4096" msgid "4096"
msgstr "" 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:457
msgid "50" msgid "50"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:460
msgid "500" msgid "500"
msgstr "" 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:332
msgid "512" msgid "512"
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:536
msgid "ASNs" msgid "ASNs"
msgstr "平均取樣數" msgstr "平均取樣數"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Devices" msgid "Active Devices"
msgstr "使用中的裝置" msgstr "使用中的裝置"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:160
msgid "Active Feeds" msgid "Active Feeds"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:164
msgid "Active Interfaces"
msgstr "使用中的介面"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:168
msgid "Active Subnets" msgid "Active Subnets"
msgstr "作用中子網路" msgstr "作用中子網路"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "" msgid ""
"Additional trigger delay in seconds before banIP processing actually starts." "Additional trigger delay in seconds before banIP processing actually starts."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:219 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Allowlist Only" msgid "Allowlist Only"
msgstr "" msgstr ""
@ -109,43 +105,43 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Auto Allowlist" msgid "Auto Allowlist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Auto Blocklist" msgid "Auto Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "Auto Detection" msgid "Auto Detection"
msgstr "自動偵測" msgstr "自動偵測"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:522 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Automatically transfers suspicious IPs to the banIP blocklist." msgid "Automatically transfers suspicious IPs to the banIP blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:518 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Automatically transfers uplink IPs to the banIP allowlist." msgid "Automatically transfers uplink IPs to the banIP allowlist."
msgstr "" 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:361
msgid "Backup Directory" msgid "Backup Directory"
msgstr "備份目錄" msgstr "備份目錄"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base Directory" msgid "Base Directory"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
msgid "Base working directory while banIP processing." msgid "Base working directory while banIP processing."
msgstr "" 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:427
msgid "Blocklist Expiry" msgid "Blocklist Expiry"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:223 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:227
msgid "Blocklist Feeds" msgid "Blocklist Feeds"
msgstr "" msgstr ""
@ -155,7 +151,7 @@ msgid ""
"effect." "effect."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "CPU Cores" msgid "CPU Cores"
msgstr "" msgstr ""
@ -164,11 +160,11 @@ msgstr ""
msgid "Cancel" msgid "Cancel"
msgstr "取消" msgstr "取消"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Chain Priority" msgid "Chain Priority"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:224
msgid "Chain/Set Settings" msgid "Chain/Set Settings"
msgstr "" msgstr ""
@ -181,59 +177,59 @@ msgid ""
"documentation</a>" "documentation</a>"
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:526
msgid "Countries" msgid "Countries"
msgstr "地區" msgstr "地區"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "" msgid ""
"Deduplicate IP addresses across all active sets and and tidy up the local " "Deduplicate IP addresses across all active sets and and tidy up the local "
"blocklist." "blocklist."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:296 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300
msgid "Deduplicate IPs" msgid "Deduplicate IPs"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:234 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:238
msgid "" msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and " "Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically." "utilities automatically."
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:373
msgid "Don't check SSL server certificates during download." msgid "Don't check SSL server certificates during download."
msgstr "下載期間不檢查 SSL 伺服器證書。" msgstr "下載期間不檢查 SSL 伺服器證書。"
#: 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:373
msgid "Download Insecure" msgid "Download Insecure"
msgstr "下載不安全" msgstr "下載不安全"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "Download Parameters" msgid "Download Parameters"
msgstr "下載參數" 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:275
msgid "Download Utility" msgid "Download Utility"
msgstr "下載工具" msgstr "下載工具"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "E-Mail Profile" msgid "E-Mail Profile"
msgstr "電郵設定檔" msgstr "電郵設定檔"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "E-Mail Receiver Address" msgid "E-Mail Receiver Address"
msgstr "電郵收件人位址" msgstr "電郵收件人位址"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "E-Mail Sender Address" msgid "E-Mail Sender Address"
msgstr "電郵寄件人位址" msgstr "電郵寄件人位址"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:226
msgid "E-Mail Settings" msgid "E-Mail Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "E-Mail Topic" msgid "E-Mail Topic"
msgstr "電郵主旨" msgstr "電郵主旨"
@ -245,7 +241,7 @@ msgstr ""
msgid "Edit Blocklist" msgid "Edit Blocklist"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:156
msgid "Element Count" msgid "Element Count"
msgstr "" msgstr ""
@ -253,31 +249,31 @@ msgstr ""
msgid "Elements" msgid "Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enable the banIP service." msgid "Enable the banIP service."
msgstr "啟用 banIP 服務。" msgstr "啟用 banIP 服務。"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Enable verbose debug logging in case of processing errors." msgid "Enable verbose debug logging in case of processing errors."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:232
msgid "Enabled" msgid "Enabled"
msgstr "啟用" msgstr "啟用"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "Enables IPv4 support." msgid "Enables IPv4 support."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "Enables IPv6 support." msgid "Enables IPv6 support."
msgstr "" 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:427
msgid "Expiry time for auto added blocklist set members." msgid "Expiry time for auto added blocklist set members."
msgstr "" 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:509
msgid "Feed Selection" msgid "Feed Selection"
msgstr "" msgstr ""
@ -285,7 +281,7 @@ msgstr ""
msgid "Firewall Log" msgid "Firewall Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:218 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:222
msgid "General Settings" msgid "General Settings"
msgstr "一般設定" msgstr "一般設定"
@ -293,11 +289,11 @@ msgstr "一般設定"
msgid "Grant access to LuCI app banIP" msgid "Grant access to LuCI app banIP"
msgstr "授予存取 LuCI 應用 banIP 的權限" msgstr "授予存取 LuCI 應用 banIP 的權限"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:320 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "High Priority" msgid "High Priority"
msgstr "較高優先順序" msgstr "較高優先順序"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:319 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "Highest Priority" msgid "Highest Priority"
msgstr "最高優先順序" msgstr "最高優先順序"
@ -309,21 +305,21 @@ msgstr ""
msgid "IP Search..." msgid "IP Search..."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:237 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:241
msgid "IPv4 Support" msgid "IPv4 Support"
msgstr "IPv4 支援" msgstr "IPv4 支援"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:242 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "IPv6 Support" msgid "IPv6 Support"
msgstr "支援 IPv6" msgstr "支援 IPv6"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "" msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of " "Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the sets." "temporary split files while loading the sets."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:142 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:146
msgid "Information" msgid "Information"
msgstr "資訊" msgstr "資訊"
@ -331,45 +327,45 @@ msgstr "資訊"
msgid "LAN-Forward (packets)" msgid "LAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "LAN-Forward Chain" msgid "LAN-Forward Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184
msgid "Last Run" msgid "Last Run"
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:327
msgid "Least Priority" msgid "Least Priority"
msgstr "最低優先順序" msgstr "最低優先順序"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "Less Priority" msgid "Less Priority"
msgstr "較低優先順序" msgstr "較低優先順序"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:408 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:418
msgid "Limit certain feeds to the LAN-Forward chain." msgid "Limit certain feeds to the LAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "Limit certain feeds to the WAN-Forward chain." msgid "Limit certain feeds to the WAN-Forward chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "Limit certain feeds to the WAN-Input chain." msgid "Limit certain feeds to the WAN-Input chain."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:335 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
msgid "Limit the cpu cores used by banIP to save RAM." msgid "Limit the cpu cores used by banIP to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "" msgid ""
"List Set elements in the report, disable this to speed up the report " "List Set elements in the status and report, disable this to reduce the CPU "
"significantly." "load."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "List of available network interfaces to trigger the banIP start." msgid "List of available network interfaces to trigger the banIP start."
msgstr "觸發 banIP 啟動的可用網路介面列表。" msgstr "觸發 banIP 啟動的可用網路介面列表。"
@ -377,60 +373,68 @@ msgstr "觸發 banIP 啟動的可用網路介面列表。"
msgid "List the elements of a specific banIP-related Set." msgid "List the elements of a specific banIP-related Set."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "Log Count" msgid "Log Count"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log LAN-Forward" msgid "Log LAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Log Level"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Log Limit" msgid "Log Limit"
msgstr "日誌限制" msgstr "日誌限制"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:225
msgid "Log Settings" msgid "Log Settings"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "Log Terms" msgid "Log Terms"
msgstr "日誌項目" msgstr "日誌項目"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log WAN-Forward" msgid "Log WAN-Forward"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log WAN-Input" msgid "Log WAN-Input"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:312
msgid "Log suspicious forwarded LAN packets (rejected)." msgid "Log suspicious forwarded LAN packets (rejected)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:308
msgid "Log suspicious forwarded WAN packets (dropped)." msgid "Log suspicious forwarded WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:300 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:304
msgid "Log suspicious incoming WAN packets (dropped)." msgid "Log suspicious incoming WAN packets (dropped)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:327 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:331
msgid "Max Open Files" msgid "Max Open Files"
msgstr "" 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:172
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "Network Devices" msgid "Network Devices"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
#: 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:267
msgid "Network Interfaces" msgid "Network Interfaces"
msgstr "網路介面" msgstr "網路介面"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "Nice Level" msgid "Nice Level"
msgstr "" msgstr ""
@ -447,16 +451,16 @@ msgstr ""
msgid "No banIP related processing logs yet!" msgid "No banIP related processing logs yet!"
msgstr "" 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:325
msgid "Normal Priority (default)" msgid "Normal Priority (default)"
msgstr "正常優先順序 (預設)" msgstr "正常優先順序 (預設)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "" msgid ""
"Number of failed login attempts of the same IP in the log before blocking." "Number of failed login attempts of the same IP in the log before blocking."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
msgid "" msgid ""
"Override the pre-configured download options for the selected download " "Override the pre-configured download options for the selected download "
"utility." "utility."
@ -466,7 +470,7 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "概覽" msgstr "概覽"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:433 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:456
msgid "Parse only the last stated number of log entries for suspicious events." msgid "Parse only the last stated number of log entries for suspicious events."
msgstr "僅解析最後宣告的可疑事件的日誌項目數量。" msgstr "僅解析最後宣告的可疑事件的日誌項目數量。"
@ -474,11 +478,11 @@ msgstr "僅解析最後宣告的可疑事件的日誌項目數量。"
msgid "Processing Log" msgid "Processing Log"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
msgid "Profile used by 'msmtp' for banIP notification E-Mails." msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr "「msmtp」所用的 banIP 電子郵件通知設定。" msgstr "「msmtp」所用的 banIP 電子郵件通知設定。"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:458 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:481
msgid "" msgid ""
"Receiver address for banIP notification E-Mails, this information is " "Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality." "required to enable E-Mail functionality."
@ -488,23 +492,23 @@ msgstr ""
msgid "Refresh" msgid "Refresh"
msgstr "重新整理" msgstr "重新整理"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:200 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:204
msgid "Reload" msgid "Reload"
msgstr "重新載入" 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:365
msgid "Report Directory" msgid "Report Directory"
msgstr "報告目錄" msgstr "報告目錄"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Report Elements" msgid "Report Elements"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:207 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:211
msgid "Restart" msgid "Restart"
msgstr "重新啟動" msgstr "重新啟動"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:526 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "Restrict the internet access from/to a small number of secure IPs." msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr "" msgstr ""
@ -513,11 +517,11 @@ msgstr ""
msgid "Result" msgid "Result"
msgstr "結果" msgstr "結果"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:180
msgid "Run Flags" msgid "Run Flags"
msgstr "執行旗標" msgstr "執行旗標"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:172 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:176
msgid "Run Information" msgid "Run Information"
msgstr "執行資訊" msgstr "執行資訊"
@ -529,23 +533,23 @@ msgstr ""
msgid "Search the banIP-related Sets for a specific IP." msgid "Search the banIP-related Sets for a specific IP."
msgstr "" 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:275
msgid "Select one of the pre-configured download utilities." msgid "Select one of the pre-configured download utilities."
msgstr "" 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:251
msgid "Select the WAN network device(s)." msgid "Select the WAN network device(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:255 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:259
msgid "Select the logical WAN IPv4 network interface(s)." msgid "Select the logical WAN IPv4 network interface(s)."
msgstr "" 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:267
msgid "Select the logical WAN IPv6 network interface(s)." msgid "Select the logical WAN IPv6 network interface(s)."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Sender address for banIP notification E-Mails." msgid "Sender address for banIP notification E-Mails."
msgstr "banIP 通知郵件的傳送位址。" msgstr "banIP 通知郵件的傳送位址。"
@ -554,11 +558,15 @@ msgstr "banIP 通知郵件的傳送位址。"
msgid "Set" msgid "Set"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set Policy"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51 #: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:51
msgid "Set Reporting" msgid "Set Reporting"
msgstr "" 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:348
msgid "Set Split Size" msgid "Set Split Size"
msgstr "" msgstr ""
@ -574,29 +582,37 @@ msgstr ""
msgid "Set details" msgid "Set details"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "" msgid ""
"Set the nft chain priority within the banIP table. Please note: lower values " "Set the nft chain priority within the banIP table. Please note: lower values "
"means higher priority." "means higher priority."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:216 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Set the nft policy for banIP-related sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:443
msgid "Set the syslog level for NFT logging."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:220
msgid "Settings" msgid "Settings"
msgstr "設置" 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:348
msgid "Split external set loading after every n members to save RAM." msgid "Split external set loading after every n members to save RAM."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
msgid "Startup Trigger Interface" msgid "Startup Trigger Interface"
msgstr "啟動觸發介面" msgstr "啟動觸發介面"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:144 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
msgid "Status" msgid "Status"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
@ -604,17 +620,17 @@ msgstr ""
msgid "Survey" msgid "Survey"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:184 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:188
msgid "System Information" msgid "System Information"
msgstr "" 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:365
msgid "Target directory for IPSet related report files." msgid "Target directory for banIP-related report files."
msgstr "IPSet 相關的報告檔案的目的目錄。" 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:361
msgid "Target directory for compressed source list backups." msgid "Target directory for compressed feed backups."
msgstr "壓縮的來源列表備份的目的目錄。" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
msgid "The allowlist is too big, unable to save modifications." msgid "The allowlist is too big, unable to save modifications."
@ -624,13 +640,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications." msgid "The blocklist is too big, unable to save modifications."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:470
msgid "" msgid ""
"The default log terms / regular expressions are filtering suspicious ssh, " "The default log terms / regular expressions are filtering suspicious ssh, "
"LuCI, nginx and asterisk traffic." "LuCI, nginx and asterisk traffic."
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:318 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:322
msgid "The selected priority will be used for banIP background processing." msgid "The selected priority will be used for banIP background processing."
msgstr "" msgstr ""
@ -668,11 +684,11 @@ msgstr ""
msgid "Timestamp" msgid "Timestamp"
msgstr "時間戳" msgstr "時間戳"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:466 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Topic for banIP notification E-Mails." msgid "Topic for banIP notification E-Mails."
msgstr "banIP 通知郵件的主題。" msgstr "banIP 通知郵件的主題。"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:291 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:295
msgid "Trigger Delay" msgid "Trigger Delay"
msgstr "觸發延遲" msgstr "觸發延遲"
@ -681,11 +697,11 @@ msgstr "觸發延遲"
msgid "Unable to save modifications: %s" msgid "Unable to save modifications: %s"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:231 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Verbose Debug Logging" msgid "Verbose Debug Logging"
msgstr "詳細除錯日誌" msgstr "詳細除錯日誌"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
msgid "Version" msgid "Version"
msgstr "" msgstr ""
@ -693,7 +709,7 @@ msgstr ""
msgid "WAN-Forward (packets)" msgid "WAN-Forward (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:400 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
msgid "WAN-Forward Chain" msgid "WAN-Forward Chain"
msgstr "" msgstr ""
@ -701,10 +717,18 @@ msgstr ""
msgid "WAN-Input (packets)" msgid "WAN-Input (packets)"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:392 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:402
msgid "WAN-Input Chain" msgid "WAN-Input Chain"
msgstr "" msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:445
msgid "alert"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:452
msgid "audit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187 #: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:187
msgid "auto-added to allowlist today" msgid "auto-added to allowlist today"
msgstr "" msgstr ""
@ -717,6 +741,51 @@ msgstr ""
msgid "banIP" msgid "banIP"
msgstr "禁止IP" msgstr "禁止IP"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:446
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:444
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:384
msgid "memory (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "notice"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:448
msgid "warn (default)"
msgstr ""
#~ msgid "Active Interfaces"
#~ msgstr "使用中的介面"
#~ msgid "Target directory for IPSet related report files."
#~ msgstr "IPSet 相關的報告檔案的目的目錄。"
#~ msgid "Target directory for compressed source list backups."
#~ msgstr "壓縮的來源列表備份的目的目錄。"
#~ msgid "" #~ msgid ""
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes " #~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
#~ "take effect." #~ "take effect."