Merge pull request #7090 from stokito/luci-app-banip-po

luci-app-banip: improve translation
This commit is contained in:
Dirk Brenken 2024-05-01 13:43:46 +02:00 committed by GitHub
commit 51e4db2f0c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
38 changed files with 7984 additions and 11842 deletions

View File

@ -319,11 +319,12 @@ return view.extend({
o.rmempty = true;
o = s.taboption('general', form.ListValue, 'ban_fetchretry', _('Download Retries'), _('Number of download attempts in case of an error (not supported by uclient-fetch).'));
o.value('1', _('1'));
o.value('3', _('3'));
o.value('5', _('5 (default)'));
o.value('10', _('10'));
o.value('20', _('20'));
o.value('1', '1');
o.value('3', '3');
o.value('5', '5');
o.value('10', '10');
o.value('20', '20');
o.default = '5';
o.optional = true;
o.rmempty = true;
@ -340,17 +341,19 @@ return view.extend({
o = s.taboption('advanced', form.ListValue, 'ban_nicelimit', _('Nice Level'), _('The selected priority will be used for banIP background processing.'));
o.value('-20', _('Highest Priority'));
o.value('-10', _('High Priority'));
o.value('0', _('Normal Priority (default)'));
o.value('0', _('Normal Priority'));
o.value('10', _('Less Priority'));
o.value('19', _('Least Priority'));
o.default = '0';
o.optional = true;
o.rmempty = true;
o = s.taboption('advanced', form.ListValue, 'ban_filelimit', _('Max Open Files'), _('Increase the maximal number of open files, e.g. to handle the amount of temporary split files while loading the Sets.'));
o.value('512', _('512'));
o.value('1024', _('1024 (default)'));
o.value('2048', _('2048'));
o.value('4096', _('4096'));
o.value('512', '512');
o.value('1024', '1024');
o.value('2048', '2048');
o.value('4096', '4096');
o.default = '1024';
o.optional = true;
o.rmempty = true;
@ -401,10 +404,11 @@ return view.extend({
o.default = '<em style="color:#37c;font-weight:bold;">' + _('Changes on this tab needs a banIP service restart to take effect.') + '</em>';
o = s.taboption('adv_chain', form.ListValue, 'ban_nftpriority', _('Chain Priority'), _('Set the nft chain priority within the banIP table, lower values means higher priority.'));
o.value('0', _('0'));
o.value('-100', _('-100 (default)'));
o.value('-150', _('-150'));
o.value('-200', _('-200'));
o.value('0', '0');
o.value('-100', '-100');
o.value('-150', '-150');
o.value('-200', '-200');
o.default = '100';
o.optional = true;
o.rmempty = true;
@ -424,33 +428,36 @@ return view.extend({
o.optional = true;
o.rmempty = true;
o = s.taboption('adv_chain', form.ListValue, 'ban_icmplimit', _('ICMP-Treshold'), _('ICMP-Treshold in packets per second to prevent WAN-DDoS attacks.'));
o.value('1', _('1'));
o.value('10', _('10 (default)'));
o.value('50', _('50'));
o.value('100', _('100'));
o.value('250', _('250'));
o.value('500', _('500'));
o = s.taboption('adv_chain', form.ListValue, 'ban_icmplimit', _('ICMP-Threshold'), _('ICMP-Threshold in packets per second to prevent WAN-DDoS attacks.'));
o.value('1', '1');
o.value('10', '10');
o.value('50', '50');
o.value('100', '100');
o.value('250', '250');
o.value('500', '500');
o.default = '10';
o.optional = true;
o.rmempty = true;
o = s.taboption('adv_chain', form.ListValue, 'ban_synlimit', _('SYN-Treshold'), _('SYN-Treshold in packets per second to prevent WAN-DDoS attacks.'));
o.value('1', _('1'));
o.value('10', _('10 (default)'));
o.value('50', _('50'));
o.value('100', _('100'));
o.value('250', _('250'));
o.value('500', _('500'));
o = s.taboption('adv_chain', form.ListValue, 'ban_synlimit', _('SYN-Threshold'), _('SYN-Threshold in packets per second to prevent WAN-DDoS attacks.'));
o.value('1', '1');
o.value('10', '10');
o.value('50', '50');
o.value('100', '100');
o.value('250', '250');
o.value('500', '500');
o.default = '10';
o.optional = true;
o.rmempty = true;
o = s.taboption('adv_chain', form.ListValue, 'ban_udplimit', _('UDP-Treshold'), _('UDP-Treshold in packets per second to prevent WAN-DDoS attacks.'));
o.value('1', _('1'));
o.value('10', _('10'));
o.value('50', _('50'));
o.value('100', _('100 (default)'));
o.value('250', _('250'));
o.value('500', _('500'));
o = s.taboption('adv_chain', form.ListValue, 'ban_udplimit', _('UDP-Threshold'), _('UDP-Threshold in packets per second to prevent WAN-DDoS attacks.'));
o.value('1', '1');
o.value('10', '10');
o.value('50', '50');
o.value('100', '100');
o.value('250', '250');
o.value('500', '500');
o.default = '100';
o.optional = true;
o.rmempty = true;
@ -462,14 +469,16 @@ return view.extend({
o.default = '<em style="color:#37c;font-weight:bold;">' + _('Changes on this tab needs a banIP service restart to take effect.') + '</em>';
o = s.taboption('adv_set', form.ListValue, 'ban_nftpolicy', _('Set Policy'), _('Set the nft policy for banIP-related Sets.'));
o.value('memory', _('memory (default)'));
o.value('memory', _('memory'));
o.value('performance', _('performance'));
o.default = 'memory';
o.optional = true;
o.rmempty = true;
o = s.taboption('adv_set', form.ListValue, 'ban_blocktype', _('Block Type'), _('Drop packets silently or actively reject the traffic on WAN-Input and WAN-Forward chains.'));
o.value('drop', _('drop (default)'));
o.value('drop', _('drop'));
o.value('reject', _('reject'));
o.default = 'drop';
o.optional = true;
o.rmempty = true;
@ -540,10 +549,11 @@ return view.extend({
o.value('alert', _('alert'));
o.value('crit', _('crit'));
o.value('err', _('err'));
o.value('warn', _('warn (default)'));
o.value('warn', _('warn'));
o.value('notice', _('notice'));
o.value('info', _('info'));
o.value('debug', _('debug'));
o.default = 'warn';
o.optional = true;
o.rmempty = true;
@ -564,12 +574,13 @@ return view.extend({
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. To disable the log monitor at all set it to \'0\'.'));
o.value('0', _('0 (disable)'));
o.value('50', _('50'));
o.value('100', _('100 (default)'));
o.value('250', _('250'));
o.value('500', _('500'));
o.value('1000', _('1000'));
o.value('0', _('Disable'));
o.value('50', '50');
o.value('100', '100');
o.value('250', '250');
o.value('500', '500');
o.value('1000', '1000');
o.default = '100';
o.optional = true;
o.rmempty = true;
@ -651,7 +662,7 @@ return view.extend({
if (result[2]) {
countries = result[2].trim().split('\n');
o = s.taboption('feeds', form.MultiValue, 'ban_country', _('Countries (RIR)'));
o = s.taboption('feeds', form.MultiValue, 'ban_country', _('Countries') + ' (<abbr title="Regional Internet Registries">RIR</abbr>)');
for (let i = 0; i < countries.length; i++) {
try {
ccode = countries[i].match(/^(\w+)\t/)[1].trim();
@ -722,8 +733,9 @@ return view.extend({
o = s.taboption('feeds', form.ListValue, 'ban_autoallowuplink', _('Auto Allow Uplink'), _('Limit the uplink autoallow function.'));
o.depends('ban_autoallowlist', '1');
o.value('disable', _('Disable'));
o.value('subnet', _('Subnet (default)'));
o.value('subnet', _('Subnet'));
o.value('ip', _('IP'));
o.default = 'subnet';
o.optional = true;
o.rmempty = true;

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -5,119 +5,19 @@ msgstr "Content-Type: text/plain; charset=UTF-8"
msgid "-- Set Selection --"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:405
msgid "-100 (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
msgid "-150"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:407
msgid "-200"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
msgid "0"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:567
msgid "0 (disable)"
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:428
#: 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:448
msgid "1"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:325
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
msgid "10"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:429
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:439
msgid "10 (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:441
msgid "100"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:451
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:569
msgid "100 (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:572
msgid "1000"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "1024 (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:326
msgid "20"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:352
msgid "2048"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:432
#: 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:452
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:570
msgid "250"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:323
msgid "3"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:353
msgid "4096"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:324
msgid "5 (default)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:430
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:440
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:450
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:568
msgid "50"
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
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:571
msgid "500"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
msgid "512"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:671
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:682
msgid "AFRINIC - serving Africa and the Indian Ocean region"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:672
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:683
msgid "APNIC - serving the Asia Pacific region"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:673
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:684
msgid "ARIN - serving Canada and the United States"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:679
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:690
msgid "ASNs"
msgstr ""
@ -141,19 +41,19 @@ msgstr ""
msgid "Advanced Settings"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
msgid "Allow Protocol/Ports"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
msgid "Allow VLAN Forwards"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:688
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:699
msgid "Allowlist Feed URLs"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:749
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:761
msgid "Allowlist Only"
msgstr ""
@ -163,17 +63,17 @@ msgid ""
"banIP that changes take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:411
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
msgid ""
"Always allow a protocol (tcp/udp) with certain ports or port ranges in WAN-"
"Input and WAN-Forward chain."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:415
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
msgid "Always allow certain VLAN forwards."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425
msgid "Always block certain VLAN forwards."
msgstr ""
@ -181,19 +81,19 @@ msgstr ""
msgid "Apply & Restart"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:733
msgid "Auto Allow Uplink"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:718
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729
msgid "Auto Allowlist"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:746
msgid "Auto Block Subnet"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:730
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:742
msgid "Auto Blocklist"
msgstr ""
@ -201,49 +101,49 @@ msgstr ""
msgid "Auto Detection"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:734
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:746
msgid ""
"Automatically add entire subnets to the blocklist Set based on an additional "
"RDAP request with the suspicious IP."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:730
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:742
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:718
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:729
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:380
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:383
msgid "Backup Directory"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
msgid "Base Directory"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:376
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:379
msgid "Base working directory while banIP processing."
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:478
msgid "Block Type"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:421
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:425
msgid "Block VLAN Forwards"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:640
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:651
msgid "Blocklist Feed"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:739
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:751
msgid "Blocklist Set Expiry"
msgstr ""
@ -253,13 +153,13 @@ msgid ""
"banIP that changes take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:360
msgid "CPU Cores"
msgstr ""
@ -268,14 +168,14 @@ msgstr ""
msgid "Cancel"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
msgid "Chain Priority"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:338
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:462
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:536
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:339
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:404
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:469
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
@ -292,25 +192,25 @@ msgid ""
"rel=\"noreferrer noopener\" >online documentation</a>"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:654
msgid "Countries (RIR)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:665
msgid "Countries"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
msgid "Custom Feed Editor"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid ""
"Deduplicate IP addresses across all active Sets and tidy up the local "
"blocklist."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:388
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:391
msgid "Deduplicate IPs"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:476
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:485
msgid "Default Block Policy"
msgstr ""
@ -324,7 +224,8 @@ msgid ""
"utilities automatically."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:724
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:735
msgid "Disable"
msgstr ""
@ -332,7 +233,7 @@ msgstr ""
msgid "Domain Lookup"
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:331
msgid "Don't check SSL server certificates during download."
msgstr ""
@ -340,7 +241,7 @@ msgstr ""
msgid "Download Custom Feeds"
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:331
msgid "Download Insecure"
msgstr ""
@ -356,25 +257,25 @@ msgstr ""
msgid "Download Utility"
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:478
msgid ""
"Drop packets silently or actively reject the traffic on WAN-Input and WAN-"
"Forward chains."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
msgid "E-Mail Notification"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:627
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:638
msgid "E-Mail Profile"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:626
msgid "E-Mail Receiver Address"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:619
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:630
msgid "E-Mail Sender Address"
msgstr ""
@ -382,7 +283,7 @@ msgstr ""
msgid "E-Mail Settings"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
msgid "E-Mail Topic"
msgstr ""
@ -408,11 +309,11 @@ msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:595
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:606
msgid "Empty field not allowed"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:596
msgid "Enable Remote Logging"
msgstr ""
@ -420,7 +321,7 @@ msgstr ""
msgid "Enable the banIP service."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:585
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:596
msgid "Enable the cgi interface to receive remote logging events."
msgstr ""
@ -440,15 +341,15 @@ msgstr ""
msgid "Enables IPv6 support."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:739
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:751
msgid "Expiry time for auto added blocklist Set members."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:686
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:697
msgid "External Allowlist Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:637
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:648
msgid "External Blocklist Feeds"
msgstr ""
@ -488,23 +389,23 @@ msgstr ""
msgid "Grant access to LuCI app banIP"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "High Priority"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:342
msgid "Highest Priority"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:427
msgid "ICMP-Treshold"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
msgid "ICMP-Threshold"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:427
msgid "ICMP-Treshold in packets per second to prevent WAN-DDoS attacks."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:431
msgid "ICMP-Threshold in packets per second to prevent WAN-DDoS attacks."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:726
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:737
msgid "IP"
msgstr ""
@ -532,7 +433,7 @@ msgstr ""
msgid "IPv6 Support"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:349
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
@ -543,7 +444,7 @@ msgid "Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:598
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:609
msgid "Invalid characters"
msgstr ""
@ -551,7 +452,7 @@ msgstr ""
msgid "Invalid input values, unable to save modifications."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:685
msgid "LACNIC - serving the Latin American and Caribbean region"
msgstr ""
@ -559,8 +460,8 @@ msgstr ""
msgid "LAN-Forward (packets)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:520
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:488
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
msgid "LAN-Forward Chain"
msgstr ""
@ -568,35 +469,35 @@ msgstr ""
msgid "Last Run"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Least Priority"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "Less Priority"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:520
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:529
msgid "Limit certain feeds to the LAN-Forward chain."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:519
msgid "Limit certain feeds to the WAN-Forward chain."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
msgid "Limit certain feeds to the WAN-Input chain."
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:360
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:722
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:733
msgid "Limit the uplink autoallow function."
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:395
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
@ -610,29 +511,29 @@ msgstr ""
msgid "List the elements of a specific banIP-related Set."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:716
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:727
msgid "Local Feed Settings"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:562
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:572
msgid ""
"Location for parsing the log file, e.g. via syslog-ng, to deactivate the "
"standard parsing via logread."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:576
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:587
msgid "Log Count"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:559
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:569
msgid "Log LAN-Forward"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:566
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:576
msgid "Log Limit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:550
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:560
msgid "Log Prerouting"
msgstr ""
@ -640,39 +541,39 @@ msgstr ""
msgid "Log Settings"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:581
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
msgid "Log Terms"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:566
msgid "Log WAN-Forward"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
msgid "Log WAN-Input"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:550
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:560
msgid "Log suspicious Prerouting packets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:559
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:569
msgid "Log suspicious forwarded LAN packets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:556
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:566
msgid "Log suspicious forwarded WAN packets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:563
msgid "Log suspicious incoming WAN packets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:562
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:572
msgid "Logfile Location"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:349
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:351
msgid "Max Open Files"
msgstr ""
@ -680,7 +581,7 @@ msgstr ""
msgid "NFT Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:538
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "NFT Log Level"
msgstr ""
@ -688,7 +589,7 @@ msgstr ""
msgid "Network Devices"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "Nice Level"
msgstr ""
@ -701,8 +602,8 @@ msgstr ""
msgid "No banIP related firewall logs yet!"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "Normal Priority (default)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Normal Priority"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
@ -711,7 +612,7 @@ msgid ""
"fetch)."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:576
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:587
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
@ -726,7 +627,7 @@ msgstr ""
msgid "Overview"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:566
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:576
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
@ -740,25 +641,25 @@ msgstr ""
msgid "Processing Log"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:627
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:638
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:709
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:720
msgid "Protocol/URL format not supported"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:675
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:686
msgid "RIPE - serving Europe, Middle East and Central Asia"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:612
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
msgid "Receive E-Mail notifications with every banIP run."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:615
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:626
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
@ -768,7 +669,7 @@ msgstr ""
msgid "Refresh"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:670
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:681
msgid "Regional Internet Registry"
msgstr ""
@ -780,19 +681,19 @@ msgstr ""
msgid "Reload Trigger Interface"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
msgid "Remote Token"
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:387
msgid "Report Directory"
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:395
msgid "Report Elements"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:749
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:761
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
@ -817,12 +718,12 @@ msgstr ""
msgid "Run Information"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
msgid "SYN-Treshold"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "SYN-Threshold"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:437
msgid "SYN-Treshold in packets per second to prevent WAN-DDoS attacks."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:442
msgid "SYN-Threshold in packets per second to prevent WAN-DDoS attacks."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:296
@ -853,7 +754,7 @@ msgstr ""
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:619
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:630
msgid "Sender address for banIP notification E-Mails."
msgstr ""
@ -862,7 +763,7 @@ msgstr ""
msgid "Set"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471
msgid "Set Policy"
msgstr ""
@ -870,7 +771,7 @@ msgstr ""
msgid "Set Reporting"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Set Split Size"
msgstr ""
@ -886,17 +787,17 @@ msgstr ""
msgid "Set details"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:403
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:406
msgid ""
"Set the nft chain priority within the banIP table, lower values means higher "
"priority."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:464
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471
msgid "Set the nft policy for banIP-related Sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:538
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:547
msgid "Set the syslog level for NFT logging."
msgstr ""
@ -904,7 +805,7 @@ msgstr ""
msgid "Settings"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:369
msgid "Split external Set loading after every n members to save RAM."
msgstr ""
@ -916,8 +817,8 @@ msgstr ""
msgid "Stop"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:725
msgid "Subnet (default)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:736
msgid "Subnet"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:129
@ -932,11 +833,11 @@ msgstr ""
msgid "Table/Chain Settings"
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:387
msgid "Target directory for banIP-related report files."
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:383
msgid "Target directory for compressed feed backups."
msgstr ""
@ -948,13 +849,13 @@ msgstr ""
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:581
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:592
msgid ""
"The default regular expressions are filtering suspicious ssh, LuCI, nginx "
"and asterisk traffic."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:340
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
msgid "The selected priority will be used for banIP background processing."
msgstr ""
@ -989,17 +890,17 @@ msgstr ""
msgid "Timestamp"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:610
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:621
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:601
msgid "Token to communicate with the cgi interface."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:623
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:634
msgid "Topic for banIP notification E-Mails."
msgstr ""
@ -1007,12 +908,12 @@ msgstr ""
msgid "Trigger Delay"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "UDP-Treshold"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
msgid "UDP-Threshold"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:447
msgid "UDP-Treshold in packets per second to prevent WAN-DDoS attacks."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:453
msgid "UDP-Threshold in packets per second to prevent WAN-DDoS attacks."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
@ -1023,15 +924,15 @@ msgstr ""
msgid "URLv6"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:663
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
msgid "Unable to parse the countries file: %s"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
msgid "Unable to parse the custom feed file: %s"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:496
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:505
msgid "Unable to parse the default feed file: %s"
msgstr ""
@ -1070,8 +971,8 @@ msgstr ""
msgid "WAN-Forward (packets)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:478
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:519
msgid "WAN-Forward Chain"
msgstr ""
@ -1079,8 +980,8 @@ msgstr ""
msgid "WAN-Input (packets)"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
#: 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 "WAN-Input Chain"
msgstr ""
@ -1094,7 +995,7 @@ msgid ""
"it!)."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:540
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:549
msgid "alert"
msgstr ""
@ -1130,58 +1031,58 @@ msgstr ""
msgid "blocked udp-flood packets"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:550
msgid "crit"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:546
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:555
msgid "debug"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:471
msgid "drop (default)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:479
msgid "drop"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:539
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:548
msgid "emerg"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:542
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:551
msgid "err"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:545
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:554
msgid "info"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:501
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:511
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:520
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:530
msgid "local allowlist"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:512
#: 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:511
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:521
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "local blocklist"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:465
msgid "memory (default)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:472
msgid "memory"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:544
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
msgid "notice"
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:473
msgid "performance"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:472
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:480
msgid "reject"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
msgid "warn (default)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:552
msgid "warn"
msgstr ""

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff