luci-app-banip: sync with banIP 0.8.2-2
Signed-off-by: Dirk Brenken <dev@brenken.org>
This commit is contained in:
parent
24d7da2416
commit
c7df6e7ea5
37 changed files with 7058 additions and 4742 deletions
|
@ -32,8 +32,8 @@ return view.extend({
|
|||
/*
|
||||
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 inf_subnets, inf_subnetarray, inf_infos, inf_flags, inf_run, inf_system
|
||||
var rt_res, inf_stat, inf_version, inf_elements, inf_feeds, inf_feedarray, inf_devices, inf_devicearray
|
||||
var inf_subnets, inf_subnetarray, nft_infos, run_infos, inf_flags, last_run, inf_system
|
||||
|
||||
pollData: poll.add(function () {
|
||||
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_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++) {
|
||||
if (i < rt_res.active_devices.length - 1) {
|
||||
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) {
|
||||
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_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_subnetarray = [];
|
||||
if (inf_subnets && rt_res) {
|
||||
|
@ -114,17 +114,21 @@ return view.extend({
|
|||
}
|
||||
inf_subnets.textContent = inf_subnetarray || '-';
|
||||
}
|
||||
inf_infos = document.getElementById('infos');
|
||||
if (inf_infos && rt_res) {
|
||||
inf_infos.textContent = rt_res.run_info || '-';
|
||||
nft_infos = document.getElementById('nft');
|
||||
if (nft_infos && rt_res) {
|
||||
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');
|
||||
if (inf_flags && rt_res) {
|
||||
inf_flags.textContent = rt_res.run_flags || '-';
|
||||
}
|
||||
inf_run = document.getElementById('run');
|
||||
if (inf_run && rt_res) {
|
||||
inf_run.textContent = rt_res.last_run || '-';
|
||||
last_run = document.getElementById('last');
|
||||
if (last_run && rt_res) {
|
||||
last_run.textContent = rt_res.last_run || '-';
|
||||
}
|
||||
inf_system = document.getElementById('system');
|
||||
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('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('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' }, [
|
||||
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('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('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Run Flags')),
|
||||
|
@ -178,7 +182,7 @@ return view.extend({
|
|||
]),
|
||||
E('div', { 'class': 'cbi-value' }, [
|
||||
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('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('System Information')),
|
||||
|
@ -354,15 +358,15 @@ return view.extend({
|
|||
o.placeholder = '/tmp';
|
||||
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.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.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.optional = true;
|
||||
|
||||
|
@ -376,6 +380,12 @@ return view.extend({
|
|||
o.rawhtml = true;
|
||||
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.value('0', _('0'));
|
||||
o.value('-100', _('-100'));
|
||||
|
@ -430,6 +440,19 @@ return view.extend({
|
|||
o.rawhtml = true;
|
||||
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.value('50', _('50'));
|
||||
o.value('100', _('100 (default)'));
|
||||
|
|
|
@ -15,92 +15,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -110,43 +106,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -156,7 +152,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -165,11 +161,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -182,59 +178,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "موضوع البريد الإلكتروني"
|
||||
|
||||
|
@ -246,7 +242,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -254,31 +250,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -286,7 +282,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr "الاعدادات العامة"
|
||||
|
||||
|
@ -294,11 +290,11 @@ msgstr "الاعدادات العامة"
|
|||
msgid "Grant access to LuCI app banIP"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -310,21 +306,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr "معلومة"
|
||||
|
||||
|
@ -332,45 +328,45 @@ msgstr "معلومة"
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -378,60 +374,68 @@ msgstr ""
|
|||
msgid "List the elements of a specific banIP-related Set."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -448,16 +452,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -467,7 +471,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -475,11 +479,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -489,23 +493,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -514,11 +518,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -530,23 +534,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -555,11 +559,15 @@ msgstr ""
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -575,29 +583,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -605,16 +621,16 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -669,11 +685,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr "تأخير الزناد"
|
||||
|
||||
|
@ -682,11 +698,11 @@ msgstr "تأخير الزناد"
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -694,7 +710,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -702,10 +718,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -718,6 +742,42 @@ msgstr ""
|
|||
msgid "banIP"
|
||||
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"
|
||||
#~ msgstr "تعذر حفظ التغييرات: s%"
|
||||
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,43 +105,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,7 +151,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -164,11 +160,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,59 +177,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "E-Mail Тема"
|
||||
|
||||
|
@ -245,7 +241,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -253,31 +249,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -285,7 +281,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr "Основни настройки"
|
||||
|
||||
|
@ -293,11 +289,11 @@ msgstr "Основни настройки"
|
|||
msgid "Grant access to LuCI app banIP"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -309,21 +305,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr "Информация"
|
||||
|
||||
|
@ -331,45 +327,45 @@ msgstr "Информация"
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -377,60 +373,68 @@ msgstr ""
|
|||
msgid "List the elements of a specific banIP-related Set."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -447,16 +451,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -466,7 +470,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -474,11 +478,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -488,23 +492,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -513,11 +517,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -529,23 +533,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -554,11 +558,15 @@ msgstr ""
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -574,29 +582,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -604,16 +620,16 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -668,11 +684,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -681,11 +697,11 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -693,7 +709,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -701,10 +717,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -717,6 +741,45 @@ msgstr ""
|
|||
msgid "banIP"
|
||||
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)"
|
||||
#~ msgstr "-m limit --limit 2/sec (по подразбиране)"
|
||||
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,43 +105,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,7 +151,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -164,11 +160,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,59 +177,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -245,7 +241,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -253,31 +249,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -285,7 +281,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr "সাধারণ সেটিংস"
|
||||
|
||||
|
@ -293,11 +289,11 @@ msgstr "সাধারণ সেটিংস"
|
|||
msgid "Grant access to LuCI app banIP"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -309,21 +305,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -331,45 +327,45 @@ msgstr ""
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -377,60 +373,68 @@ msgstr ""
|
|||
msgid "List the elements of a specific banIP-related Set."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -447,16 +451,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -466,7 +470,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -474,11 +478,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -488,23 +492,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -513,11 +517,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -529,23 +533,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -554,11 +558,15 @@ msgstr ""
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -574,29 +582,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -604,16 +620,16 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -668,11 +684,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -681,11 +697,11 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -693,7 +709,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -701,10 +717,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -717,6 +741,45 @@ msgstr ""
|
|||
msgid "banIP"
|
||||
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"
|
||||
#~ msgstr "১ ঘন্টা"
|
||||
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,43 +105,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,7 +151,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -164,11 +160,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,59 +177,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -245,7 +241,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -253,31 +249,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -285,7 +281,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr "Paràmetres generals"
|
||||
|
||||
|
@ -293,11 +289,11 @@ msgstr "Paràmetres generals"
|
|||
msgid "Grant access to LuCI app banIP"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -309,21 +305,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr "Informació"
|
||||
|
||||
|
@ -331,45 +327,45 @@ msgstr "Informació"
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -377,60 +373,68 @@ msgstr ""
|
|||
msgid "List the elements of a specific banIP-related Set."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -447,16 +451,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -466,7 +470,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -474,11 +478,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -488,23 +492,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -513,11 +517,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -529,23 +533,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -554,11 +558,15 @@ msgstr ""
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -574,29 +582,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -604,16 +620,16 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -668,11 +684,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -681,11 +697,11 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -693,7 +709,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -701,10 +717,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -717,6 +741,42 @@ msgstr ""
|
|||
msgid "banIP"
|
||||
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"
|
||||
#~ msgstr "Acció"
|
||||
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,43 +105,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,7 +151,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -164,11 +160,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,59 +177,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -245,7 +241,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -253,31 +249,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -285,7 +281,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -293,11 +289,11 @@ msgstr ""
|
|||
msgid "Grant access to LuCI app banIP"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -309,21 +305,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -331,45 +327,45 @@ msgstr ""
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -377,60 +373,68 @@ msgstr ""
|
|||
msgid "List the elements of a specific banIP-related Set."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -447,16 +451,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -466,7 +470,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -474,11 +478,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -488,23 +492,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -513,11 +517,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -529,23 +533,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -554,11 +558,15 @@ msgstr ""
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -574,29 +582,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -604,16 +620,16 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -668,11 +684,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr "Prodleva spuštění"
|
||||
|
||||
|
@ -681,11 +697,11 @@ msgstr "Prodleva spuštění"
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -693,7 +709,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -701,10 +717,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -717,6 +741,42 @@ msgstr ""
|
|||
msgid "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)"
|
||||
#~ msgstr "-m limit --limit 2/sec (výchozí)"
|
||||
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active 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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,43 +105,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,7 +151,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -164,11 +160,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,59 +177,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 ""
|
||||
"Deduplicate IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "E-mail emne"
|
||||
|
||||
|
@ -245,7 +241,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -253,31 +249,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -285,7 +281,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr "Generelle indstillinger"
|
||||
|
||||
|
@ -293,11 +289,11 @@ msgstr "Generelle indstillinger"
|
|||
msgid "Grant access to 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"
|
||||
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"
|
||||
msgstr "Højeste prioritet"
|
||||
|
||||
|
@ -309,21 +305,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr "Information"
|
||||
|
||||
|
@ -331,45 +327,45 @@ msgstr "Information"
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
"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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network 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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -448,16 +452,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -467,7 +471,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
"Analyser kun det sidste angivne antal logposter for mistænkelige hændelser."
|
||||
|
@ -476,11 +480,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -490,23 +494,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -515,11 +519,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr "Kør oplysninger"
|
||||
|
||||
|
@ -531,23 +535,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr "Afsenderadresse for banIP-meddelelses-e-mails."
|
||||
|
||||
|
@ -556,11 +560,15 @@ msgstr "Afsenderadresse for banIP-meddelelses-e-mails."
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -576,29 +584,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -606,17 +622,17 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
msgstr "Målmappe for IPSet-relaterede rapportfiler."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
msgstr "Målmappe for komprimerede sikkerhedskopier af kildelister."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
|
||||
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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -670,11 +686,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr "Udløserforsinkelse"
|
||||
|
||||
|
@ -683,11 +699,11 @@ msgstr "Udløserforsinkelse"
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -695,7 +711,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -703,10 +719,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -719,6 +743,51 @@ msgstr ""
|
|||
msgid "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 ""
|
||||
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
|
||||
#~ "take effect."
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,43 +105,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,7 +151,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -164,11 +160,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,59 +177,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 ""
|
||||
"Deduplicate IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "E-Mail-Thema"
|
||||
|
||||
|
@ -245,7 +241,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -253,31 +249,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -285,7 +281,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr "Allgemeine Einstellungen"
|
||||
|
||||
|
@ -293,11 +289,11 @@ msgstr "Allgemeine Einstellungen"
|
|||
msgid "Grant access to LuCI app banIP"
|
||||
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"
|
||||
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"
|
||||
msgstr "Höchste Priorität"
|
||||
|
||||
|
@ -309,21 +305,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr "Informationen"
|
||||
|
||||
|
@ -331,45 +327,45 @@ msgstr "Informationen"
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
"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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -449,16 +453,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -468,7 +472,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
"Nur die zuletzt angegebene Anzahl der Protokolleinträge auf verdächtige "
|
||||
|
@ -478,11 +482,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -492,23 +496,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -517,11 +521,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr "Informationen zur Ausführung"
|
||||
|
||||
|
@ -533,23 +537,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr "Absenderadresse für banIP-Benachrichtigungs-E-Mails."
|
||||
|
||||
|
@ -558,11 +562,15 @@ msgstr "Absenderadresse für banIP-Benachrichtigungs-E-Mails."
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -578,29 +586,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -608,17 +624,17 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
msgstr "Zielverzeichnis für IPSet-bezogene Berichtsdateien."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
msgstr "Zielverzeichnis für komprimierte Quelllistensicherungen."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
|
||||
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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -672,11 +688,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr "Verzögerung der Trigger-Bedingung"
|
||||
|
||||
|
@ -685,11 +701,11 @@ msgstr "Verzögerung der Trigger-Bedingung"
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -697,7 +713,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -705,10 +721,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -721,6 +745,51 @@ msgstr ""
|
|||
msgid "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 ""
|
||||
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
|
||||
#~ "take effect."
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,43 +105,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,7 +151,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -164,11 +160,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,59 +177,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -245,7 +241,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -253,31 +249,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -285,7 +281,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -293,11 +289,11 @@ msgstr ""
|
|||
msgid "Grant access to LuCI app banIP"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -309,21 +305,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -331,45 +327,45 @@ msgstr ""
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -377,60 +373,68 @@ msgstr ""
|
|||
msgid "List the elements of a specific banIP-related Set."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -447,16 +451,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -466,7 +470,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -474,11 +478,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -488,23 +492,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -513,11 +517,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -529,23 +533,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -554,11 +558,15 @@ msgstr ""
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -574,29 +582,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -604,16 +620,16 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -668,11 +684,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -681,11 +697,11 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -693,7 +709,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -701,10 +717,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -717,6 +741,42 @@ msgstr ""
|
|||
msgid "banIP"
|
||||
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"
|
||||
#~ msgstr "Δράση"
|
||||
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,43 +105,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,7 +151,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -164,11 +160,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,59 +177,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -245,7 +241,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -253,31 +249,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -285,7 +281,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -293,11 +289,11 @@ msgstr ""
|
|||
msgid "Grant access to LuCI app banIP"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -309,21 +305,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -331,45 +327,45 @@ msgstr ""
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -377,60 +373,68 @@ msgstr ""
|
|||
msgid "List the elements of a specific banIP-related Set."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -447,16 +451,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -466,7 +470,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -474,11 +478,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -488,23 +492,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -513,11 +517,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -529,23 +533,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -554,11 +558,15 @@ msgstr ""
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -574,29 +582,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -604,16 +620,16 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -668,11 +684,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -681,11 +697,11 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -693,7 +709,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -701,10 +717,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -716,3 +740,39 @@ msgstr ""
|
|||
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:3
|
||||
msgid "banIP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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 ""
|
||||
|
|
|
@ -17,92 +17,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -112,43 +108,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -158,7 +154,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -167,11 +163,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -184,59 +180,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 ""
|
||||
"Deduplicate IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Tema del correo electrónico"
|
||||
|
||||
|
@ -248,7 +244,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -256,31 +252,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -288,7 +284,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr "Configuración general"
|
||||
|
||||
|
@ -296,11 +292,11 @@ msgstr "Configuración general"
|
|||
msgid "Grant access to LuCI app banIP"
|
||||
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"
|
||||
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"
|
||||
msgstr "Prioridad más alta"
|
||||
|
||||
|
@ -312,21 +308,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr "Información"
|
||||
|
||||
|
@ -334,45 +330,45 @@ msgstr "Información"
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
"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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -451,16 +455,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -470,7 +474,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
"Analice solo el último número indicado de entradas de registro para detectar "
|
||||
|
@ -480,13 +484,13 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
msgstr ""
|
||||
"Perfil utilizado por 'msmtp' para correos electrónicos de notificación de "
|
||||
"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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -496,23 +500,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -521,11 +525,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr "Ejecutar información"
|
||||
|
||||
|
@ -537,23 +541,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr ""
|
||||
"Dirección del remitente para correos electrónicos de notificación de banIP."
|
||||
|
@ -563,11 +567,15 @@ msgstr ""
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -583,29 +591,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -613,20 +629,17 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
"Directorio de destino para archivos de informes relacionados con IPSet."
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
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
|
||||
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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -680,11 +693,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr "Retraso de disparo"
|
||||
|
||||
|
@ -693,11 +706,11 @@ msgstr "Retraso de disparo"
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -705,7 +718,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -713,10 +726,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -729,6 +750,54 @@ msgstr ""
|
|||
msgid "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 ""
|
||||
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
|
||||
#~ "take effect."
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,43 +105,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,7 +151,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -164,11 +160,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,59 +177,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 ""
|
||||
"Deduplicate IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -245,7 +241,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -253,31 +249,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -285,7 +281,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr "Yleiset asetukset"
|
||||
|
||||
|
@ -293,11 +289,11 @@ msgstr "Yleiset asetukset"
|
|||
msgid "Grant access to LuCI app banIP"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -309,21 +305,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -331,45 +327,45 @@ msgstr ""
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -377,60 +373,68 @@ msgstr ""
|
|||
msgid "List the elements of a specific banIP-related Set."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -447,16 +451,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -466,7 +470,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -474,11 +478,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -488,23 +492,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -513,11 +517,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -529,23 +533,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -554,11 +558,15 @@ msgstr ""
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -574,29 +582,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -604,16 +620,16 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -668,11 +684,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -681,11 +697,11 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -693,7 +709,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -701,10 +717,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -717,6 +741,45 @@ msgstr ""
|
|||
msgid "banIP"
|
||||
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"
|
||||
#~ msgstr "Muutoksia ei voitu tallentaa: %s"
|
||||
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,43 +105,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,7 +151,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -164,11 +160,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,60 +177,60 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 ""
|
||||
"Deduplicate IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
msgstr ""
|
||||
"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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Objet du courriel"
|
||||
|
||||
|
@ -246,7 +242,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -254,31 +250,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -286,7 +282,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr "Paramètres généraux"
|
||||
|
||||
|
@ -294,11 +290,11 @@ msgstr "Paramètres généraux"
|
|||
msgid "Grant access to LuCI app 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"
|
||||
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"
|
||||
msgstr "Priorité la plus élevée"
|
||||
|
||||
|
@ -310,21 +306,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
msgstr "Prise en charge d’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"
|
||||
msgstr "Prise en charge d’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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr "Information"
|
||||
|
||||
|
@ -332,45 +328,45 @@ msgstr "Information"
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
"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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -450,16 +454,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -469,7 +473,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
"Analyser uniquement le dernier nombre indiqué d'entrées de journal pour les "
|
||||
|
@ -479,13 +483,13 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
msgstr ""
|
||||
"Profil utilisé par 'msmtp' pour les courriel de notification de bannissement "
|
||||
"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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -495,23 +499,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -520,11 +524,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr "Informations sur l’exécution"
|
||||
|
||||
|
@ -536,23 +540,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr ""
|
||||
"Adresse de l'expéditeur des courriels de notification de bannissement IP."
|
||||
|
@ -562,11 +566,15 @@ msgstr ""
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -582,29 +590,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -612,18 +628,17 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
msgstr "Répertoire cible pour les fichiers de rapport relatifs à IPSet."
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
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
|
||||
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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -677,11 +692,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr "Délai de déclenchement"
|
||||
|
||||
|
@ -690,11 +705,11 @@ msgstr "Délai de déclenchement"
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -702,7 +717,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -710,10 +725,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -726,6 +749,52 @@ msgstr ""
|
|||
msgid "banIP"
|
||||
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 ""
|
||||
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
|
||||
#~ "take effect."
|
||||
|
|
|
@ -15,92 +15,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -110,43 +106,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -156,7 +152,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -165,11 +161,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -182,59 +178,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -246,7 +242,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -254,31 +250,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -286,7 +282,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -294,11 +290,11 @@ msgstr ""
|
|||
msgid "Grant access to LuCI app banIP"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -310,21 +306,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -332,45 +328,45 @@ msgstr ""
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -378,60 +374,68 @@ msgstr ""
|
|||
msgid "List the elements of a specific banIP-related Set."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -448,16 +452,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -467,7 +471,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -475,11 +479,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -489,23 +493,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -514,11 +518,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -530,23 +534,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -555,11 +559,15 @@ msgstr ""
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -575,29 +583,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -605,16 +621,16 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -669,11 +685,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -682,11 +698,11 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -694,7 +710,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -702,10 +718,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -718,5 +742,41 @@ msgstr ""
|
|||
msgid "banIP"
|
||||
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"
|
||||
#~ msgstr "תיאור"
|
||||
|
|
|
@ -8,92 +8,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -103,43 +99,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -149,7 +145,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -158,11 +154,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -175,59 +171,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -239,7 +235,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -247,31 +243,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -279,7 +275,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -287,11 +283,11 @@ msgstr ""
|
|||
msgid "Grant access to LuCI app banIP"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -303,21 +299,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -325,45 +321,45 @@ msgstr ""
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -371,60 +367,68 @@ msgstr ""
|
|||
msgid "List the elements of a specific banIP-related Set."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -441,16 +445,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -460,7 +464,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -468,11 +472,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -482,23 +486,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -507,11 +511,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -523,23 +527,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -548,11 +552,15 @@ msgstr ""
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -568,29 +576,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -598,16 +614,16 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -662,11 +678,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -675,11 +691,11 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -687,7 +703,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -695,10 +711,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -710,3 +734,39 @@ msgstr ""
|
|||
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:3
|
||||
msgid "banIP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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 ""
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,43 +105,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,7 +151,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -164,11 +160,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,59 +177,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 ""
|
||||
"Deduplicate IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "E-Mail Topic"
|
||||
msgstr "E-Mail téma"
|
||||
|
@ -246,7 +242,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -254,31 +250,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -286,7 +282,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -310,21 +306,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr "Információ"
|
||||
|
||||
|
@ -332,45 +328,45 @@ msgstr "Információ"
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -378,60 +374,68 @@ msgstr ""
|
|||
msgid "List the elements of a specific banIP-related Set."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -448,16 +452,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -467,7 +471,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -475,11 +479,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -489,23 +493,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -514,11 +518,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -530,23 +534,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -555,11 +559,15 @@ msgstr ""
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -575,29 +583,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -605,16 +621,16 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -669,11 +685,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr "Aktiváló késleltetése"
|
||||
|
||||
|
@ -682,11 +698,11 @@ msgstr "Aktiváló késleltetése"
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -694,7 +710,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -702,10 +718,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -718,6 +742,45 @@ msgstr ""
|
|||
msgid "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 ""
|
||||
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
|
||||
#~ "take effect."
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,43 +105,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,7 +151,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -164,11 +160,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,59 +177,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Oggetto e-mail"
|
||||
|
||||
|
@ -245,7 +241,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -253,31 +249,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -285,7 +281,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr "Impostazioni Generali"
|
||||
|
||||
|
@ -293,11 +289,11 @@ msgstr "Impostazioni Generali"
|
|||
msgid "Grant access to LuCI app banIP"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -309,21 +305,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr "Informazioni"
|
||||
|
||||
|
@ -331,45 +327,45 @@ msgstr "Informazioni"
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -377,60 +373,68 @@ msgstr ""
|
|||
msgid "List the elements of a specific banIP-related Set."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -447,16 +451,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -466,7 +470,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -474,11 +478,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -488,23 +492,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -513,11 +517,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -529,23 +533,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -554,11 +558,15 @@ msgstr ""
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -574,29 +582,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -604,16 +620,16 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -668,11 +684,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -681,11 +697,11 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -693,7 +709,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -701,10 +717,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -717,6 +741,42 @@ msgstr ""
|
|||
msgid "banIP"
|
||||
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"
|
||||
#~ msgstr "Impossibile salvare le modifiche: %s"
|
||||
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,43 +105,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,7 +151,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -164,11 +160,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,59 +177,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Eメールトピック"
|
||||
|
||||
|
@ -245,7 +241,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -253,31 +249,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -285,7 +281,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr "一般設定"
|
||||
|
||||
|
@ -293,11 +289,11 @@ msgstr "一般設定"
|
|||
msgid "Grant access to LuCI app banIP"
|
||||
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"
|
||||
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"
|
||||
msgstr "最高の優先度"
|
||||
|
||||
|
@ -309,21 +305,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr "情報"
|
||||
|
||||
|
@ -331,45 +327,45 @@ msgstr "情報"
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -377,60 +373,68 @@ msgstr ""
|
|||
msgid "List the elements of a specific banIP-related Set."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -447,16 +451,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -466,7 +470,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -474,11 +478,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -488,23 +492,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -513,11 +517,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr "実行情報"
|
||||
|
||||
|
@ -529,23 +533,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -554,11 +558,15 @@ msgstr ""
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -574,29 +582,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -604,16 +620,16 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -668,11 +684,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr "トリガ遅延"
|
||||
|
||||
|
@ -681,11 +697,11 @@ msgstr "トリガ遅延"
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -693,7 +709,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -701,10 +717,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -717,6 +741,42 @@ msgstr ""
|
|||
msgid "banIP"
|
||||
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"
|
||||
#~ msgstr "変更を保存できませんでした: %s"
|
||||
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,44 +105,44 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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
|
||||
msgid "Backup Directory"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -156,7 +152,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -165,11 +161,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -182,59 +178,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -246,7 +242,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -254,31 +250,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -286,7 +282,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr "기본 설정"
|
||||
|
||||
|
@ -294,11 +290,11 @@ msgstr "기본 설정"
|
|||
msgid "Grant access to LuCI app banIP"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -310,21 +306,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr "정보"
|
||||
|
||||
|
@ -332,45 +328,45 @@ msgstr "정보"
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -378,60 +374,68 @@ msgstr ""
|
|||
msgid "List the elements of a specific banIP-related Set."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -448,16 +452,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -467,7 +471,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -475,11 +479,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -489,23 +493,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -514,11 +518,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -530,23 +534,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -555,11 +559,15 @@ msgstr ""
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -575,29 +583,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -605,16 +621,16 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -669,11 +685,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -682,11 +698,11 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -694,7 +710,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -702,10 +718,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -718,6 +742,42 @@ msgstr ""
|
|||
msgid "banIP"
|
||||
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"
|
||||
#~ msgstr "이름"
|
||||
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,43 +105,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,7 +151,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -164,11 +160,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,59 +177,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -245,7 +241,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -253,31 +249,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -285,7 +281,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -293,11 +289,11 @@ msgstr ""
|
|||
msgid "Grant access to LuCI app banIP"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -309,21 +305,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -331,45 +327,45 @@ msgstr ""
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -377,60 +373,68 @@ msgstr ""
|
|||
msgid "List the elements of a specific banIP-related Set."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -447,16 +451,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -466,7 +470,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -474,11 +478,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -488,23 +492,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -513,11 +517,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -529,23 +533,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -554,11 +558,15 @@ msgstr ""
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -574,29 +582,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -604,16 +620,16 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -668,11 +684,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -681,11 +697,11 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -693,7 +709,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -701,10 +717,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -717,6 +741,42 @@ msgstr ""
|
|||
msgid "banIP"
|
||||
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"
|
||||
#~ msgstr "वर्णन"
|
||||
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,43 +105,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,7 +151,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -164,11 +160,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,59 +177,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -245,7 +241,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -253,31 +249,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -285,7 +281,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -293,11 +289,11 @@ msgstr ""
|
|||
msgid "Grant access to LuCI app banIP"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -309,21 +305,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -331,45 +327,45 @@ msgstr ""
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -377,60 +373,68 @@ msgstr ""
|
|||
msgid "List the elements of a specific banIP-related Set."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -447,16 +451,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -466,7 +470,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -474,11 +478,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -488,23 +492,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -513,11 +517,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -529,23 +533,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -554,11 +558,15 @@ msgstr ""
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -574,29 +582,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -604,16 +620,16 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -668,11 +684,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -681,11 +697,11 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -693,7 +709,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -701,10 +717,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -717,6 +741,42 @@ msgstr ""
|
|||
msgid "banIP"
|
||||
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"
|
||||
#~ msgstr "Lanjutan"
|
||||
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,43 +105,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,7 +151,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -164,11 +160,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,59 +177,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "E-postemne"
|
||||
|
||||
|
@ -245,7 +241,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -253,31 +249,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -285,7 +281,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr "Generelle innstillinger"
|
||||
|
||||
|
@ -293,11 +289,11 @@ msgstr "Generelle innstillinger"
|
|||
msgid "Grant access to LuCI app banIP"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -309,21 +305,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr "Info"
|
||||
|
||||
|
@ -331,45 +327,45 @@ msgstr "Info"
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -377,60 +373,68 @@ msgstr ""
|
|||
msgid "List the elements of a specific banIP-related Set."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -447,16 +451,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -466,7 +470,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -474,11 +478,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -488,23 +492,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -513,12 +517,12 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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
|
||||
msgid "Run Flags"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -530,23 +534,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -555,11 +559,15 @@ msgstr ""
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -575,29 +583,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -605,16 +621,16 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -669,11 +685,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr "Utløserforsinkelse"
|
||||
|
||||
|
@ -682,11 +698,11 @@ msgstr "Utløserforsinkelse"
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -694,7 +710,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -702,10 +718,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -718,6 +742,42 @@ msgstr ""
|
|||
msgid "banIP"
|
||||
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"
|
||||
#~ msgstr "Kunne ikke lagre endringer: %s"
|
||||
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,43 +105,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,7 +151,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -164,11 +160,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,59 +177,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 ""
|
||||
"Deduplicate IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "E-Mail onderwerp"
|
||||
|
||||
|
@ -245,7 +241,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -253,31 +249,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -285,7 +281,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr "Algemene instellingen"
|
||||
|
||||
|
@ -293,11 +289,11 @@ msgstr "Algemene instellingen"
|
|||
msgid "Grant access to 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"
|
||||
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"
|
||||
msgstr "Hoogste prioriteit"
|
||||
|
||||
|
@ -309,21 +305,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr "Informatie"
|
||||
|
||||
|
@ -331,45 +327,45 @@ msgstr "Informatie"
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Log Terms"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network 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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -448,16 +452,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -467,7 +471,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
"Laat alleen het aantal regels in de log zien van de verdachte gebeurtenissen."
|
||||
|
@ -476,12 +480,12 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
msgstr ""
|
||||
"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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -491,23 +495,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -516,12 +520,12 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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
|
||||
msgid "Run Flags"
|
||||
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
|
||||
msgid "Run Information"
|
||||
msgstr "Verwerkingsinformatie"
|
||||
|
@ -534,23 +538,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr "Afzender e-mailadres voor de banIP email meldingen."
|
||||
|
||||
|
@ -559,11 +563,15 @@ msgstr "Afzender e-mailadres voor de banIP email meldingen."
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -579,29 +587,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -609,16 +625,16 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -673,11 +689,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -686,11 +702,11 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -698,7 +714,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -706,10 +722,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -722,6 +746,45 @@ msgstr ""
|
|||
msgid "banIP"
|
||||
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 ""
|
||||
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
|
||||
#~ "take effect."
|
||||
|
|
|
@ -15,94 +15,90 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
msgstr ""
|
||||
"Dodatkowe opóźnienie wyzwalacza w sekundach przed faktycznym rozpoczęciem "
|
||||
"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"
|
||||
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"
|
||||
msgstr "Tylko lista dozwolonych"
|
||||
|
||||
|
@ -114,44 +110,44 @@ msgstr ""
|
|||
"Modyfikacje listy dozwolonych zostały zapisane, uruchom ponownie banIP, aby "
|
||||
"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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
"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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr "Kanały listy zablokowanych"
|
||||
|
||||
|
@ -163,7 +159,7 @@ msgstr ""
|
|||
"Modyfikacje listy zablokowanych zostały zapisane, uruchom ponownie banIP, "
|
||||
"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"
|
||||
msgstr "Rdzenie procesora"
|
||||
|
||||
|
@ -172,11 +168,11 @@ msgstr "Rdzenie procesora"
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr "Ustawienia łańcucha/zestawu"
|
||||
|
||||
|
@ -194,11 +190,11 @@ msgstr ""
|
|||
"banip/files/README.md\" target=\"_blank\" rel=\"noreferrer noopener\" "
|
||||
">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"
|
||||
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 ""
|
||||
"Deduplicate IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
|
@ -206,11 +202,11 @@ msgstr ""
|
|||
"Deduplikuj adresy IP we wszystkich aktywnych zestawach i uporządkuj lokalną "
|
||||
"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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
|
@ -218,39 +214,39 @@ msgstr ""
|
|||
"Automatycznie wykrywaj odpowiednie urządzenia sieciowe, interfejsy, "
|
||||
"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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Temat e-mail"
|
||||
|
||||
|
@ -262,7 +258,7 @@ msgstr "Edytuj listę dozwolonych"
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr "Liczba elementów"
|
||||
|
||||
|
@ -270,32 +266,33 @@ msgstr "Liczba elementów"
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr ""
|
||||
"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"
|
||||
msgstr "Wybór kanału"
|
||||
|
||||
|
@ -303,7 +300,7 @@ msgstr "Wybór kanału"
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr "Ustawienia główne"
|
||||
|
||||
|
@ -311,11 +308,11 @@ msgstr "Ustawienia główne"
|
|||
msgid "Grant access to LuCI app 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"
|
||||
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"
|
||||
msgstr "Najwyższy priorytet"
|
||||
|
||||
|
@ -327,15 +324,15 @@ msgstr "Wyszukiwanie IP"
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"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 "
|
||||
"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"
|
||||
msgstr "Informacje"
|
||||
|
||||
|
@ -351,49 +348,47 @@ msgstr "Informacje"
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr ""
|
||||
"Ogranicz liczbę rdzeni procesora używanych przez banIP, aby oszczędzać "
|
||||
"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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
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."
|
||||
msgstr ""
|
||||
"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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
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!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
"Liczba nieudanych prób logowania z tego samego adresu IP w dzienniku przed "
|
||||
"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 ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -495,7 +498,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
"Analizuj tylko ostatnią podaną liczbę wpisów w dzienniku w poszukiwaniu "
|
||||
|
@ -505,12 +508,12 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
msgstr ""
|
||||
"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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -522,23 +525,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
"Ogranicz dostęp do Internetu z/do niewielkiej liczby bezpiecznych adresów IP."
|
||||
|
@ -548,11 +551,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr "Informacje uruchomieniowe"
|
||||
|
||||
|
@ -564,23 +567,23 @@ msgstr "Szukaj"
|
|||
msgid "Search the banIP-related Sets for a specific 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."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
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"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr "Rozmiar podziału zestawu"
|
||||
|
||||
|
@ -609,7 +616,7 @@ msgstr "Badanie zestawu..."
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
|
@ -617,25 +624,33 @@ msgstr ""
|
|||
"Ustaw priorytet łańcucha nft w tabeli banIP. Uwaga: niższe wartości "
|
||||
"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"
|
||||
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."
|
||||
msgstr ""
|
||||
"Podziel ładowanie zestawu zewnętrznego po każdych n członkach, aby "
|
||||
"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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Zatrzymaj"
|
||||
|
||||
|
@ -643,17 +658,17 @@ msgstr "Zatrzymaj"
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr "Informacje systemowe"
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
msgstr "Katalog docelowy dla plików raportów związanych z IPSet."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
msgstr "Katalog docelowy dla kopii zapasowych skompresowanej listy źródeł."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
|
||||
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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
|
@ -671,7 +686,7 @@ msgstr ""
|
|||
"Domyślne terminy/wyrażenia regularne dziennika filtrują podejrzany ruch ssh, "
|
||||
"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."
|
||||
msgstr "Wybrany priorytet będzie używany do przetwarzania banIP w tle."
|
||||
|
||||
|
@ -721,11 +736,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr "Opóźnienie wyzwalacza"
|
||||
|
||||
|
@ -734,11 +749,11 @@ msgstr "Opóźnienie wyzwalacza"
|
|||
msgid "Unable to save modifications: %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"
|
||||
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"
|
||||
msgstr "Wersja"
|
||||
|
||||
|
@ -746,7 +761,7 @@ msgstr "Wersja"
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr "Łańcuch przekazywania WAN"
|
||||
|
||||
|
@ -754,10 +769,18 @@ msgstr "Łańcuch przekazywania WAN"
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr "dzisiaj automatycznie dodany do listy dozwolonych"
|
||||
|
@ -770,6 +793,58 @@ msgstr "dzisiaj automatycznie dodany do listy zablokowanych"
|
|||
msgid "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 ""
|
||||
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
|
||||
#~ "take effect."
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,43 +105,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,7 +151,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -164,11 +160,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,59 +177,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 ""
|
||||
"Deduplicate IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Assunto do e-mail"
|
||||
|
||||
|
@ -245,7 +241,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -253,31 +249,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -285,7 +281,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr "Configurações gerais"
|
||||
|
||||
|
@ -293,11 +289,11 @@ msgstr "Configurações gerais"
|
|||
msgid "Grant access to LuCI app 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"
|
||||
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"
|
||||
msgstr "Máxima Prioridade"
|
||||
|
||||
|
@ -309,21 +305,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr "Informação"
|
||||
|
||||
|
@ -331,45 +327,45 @@ msgstr "Informação"
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
"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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -448,16 +452,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -467,7 +471,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
"Analise apenas o último número declarado das entradas de registo na busca "
|
||||
|
@ -477,11 +481,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -491,23 +495,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -516,11 +520,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr "Informações de Execução"
|
||||
|
||||
|
@ -532,23 +536,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
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"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -577,29 +585,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -607,18 +623,17 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
"Pasta de destino para ficheiros de relatório relacionados ao conjunto de IPs."
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
msgstr "O diretório de destino para os backups compactados da lista de origem."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
|
||||
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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -672,11 +687,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr "Atraso do Gatilho"
|
||||
|
||||
|
@ -685,11 +700,11 @@ msgstr "Atraso do Gatilho"
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -697,7 +712,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -705,10 +720,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -721,6 +744,54 @@ msgstr ""
|
|||
msgid "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 ""
|
||||
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
|
||||
#~ "take effect."
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,43 +105,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,7 +151,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -164,11 +160,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,59 +177,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 ""
|
||||
"Deduplicate IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Assunto do E-Mail"
|
||||
|
||||
|
@ -245,7 +241,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -253,31 +249,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -285,7 +281,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr "Configurações gerais"
|
||||
|
||||
|
@ -293,11 +289,11 @@ msgstr "Configurações gerais"
|
|||
msgid "Grant access to LuCI app 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"
|
||||
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"
|
||||
msgstr "Máxima Prioridade"
|
||||
|
||||
|
@ -309,21 +305,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr "Informações"
|
||||
|
||||
|
@ -331,45 +327,45 @@ msgstr "Informações"
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
"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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -448,16 +452,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -467,7 +471,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
"Analise apenas o último número declarado das entradas de registro na busca "
|
||||
|
@ -477,11 +481,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -491,23 +495,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -516,11 +520,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr "Informações de Execução"
|
||||
|
||||
|
@ -532,23 +536,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
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"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -577,29 +585,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -607,18 +623,17 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
"Pasta de destino para arquivos de relatório relacionados ao conjunto de IPs."
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
msgstr "O diretório de destino para os backups compactados da lista de origem."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
|
||||
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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -672,11 +687,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr "Gatilho de Atraso"
|
||||
|
||||
|
@ -685,11 +700,11 @@ msgstr "Gatilho de Atraso"
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -697,7 +712,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -705,10 +720,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -721,6 +744,54 @@ msgstr ""
|
|||
msgid "banIP"
|
||||
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 ""
|
||||
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
|
||||
#~ "take effect."
|
||||
|
|
|
@ -15,94 +15,90 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
msgstr ""
|
||||
"Întârziere suplimentară de declanșare în secunde înainte de începerea "
|
||||
"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"
|
||||
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"
|
||||
msgstr "Doar Allowlist"
|
||||
|
||||
|
@ -114,44 +110,44 @@ msgstr ""
|
|||
"Modificările Allowlist au fost salvate, reporniți banIP pentru ca "
|
||||
"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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
msgstr ""
|
||||
"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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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 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"
|
||||
msgstr "CPU Cores"
|
||||
|
||||
|
@ -172,11 +168,11 @@ msgstr "CPU Cores"
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr "Chain/Set de setări"
|
||||
|
||||
|
@ -194,11 +190,11 @@ msgstr ""
|
|||
"master/net/banip/files/README.md\" target=\"_blank\" rel=\"noreferrer "
|
||||
"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"
|
||||
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 ""
|
||||
"Deduplicate IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
|
@ -206,11 +202,11 @@ msgstr ""
|
|||
"Deduplicați adresele IP în toate seturile active și faceți ordine în lista "
|
||||
"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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
|
@ -218,39 +214,39 @@ msgstr ""
|
|||
"Detectarea automată a dispozitivelor de rețea, interfețelor, subrețelelor, "
|
||||
"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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Subiect E-Mail"
|
||||
|
||||
|
@ -262,7 +258,7 @@ msgstr "Editați Allowlist"
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr "Număr de elemente"
|
||||
|
||||
|
@ -270,34 +266,34 @@ msgstr "Număr de elemente"
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
msgstr ""
|
||||
"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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr ""
|
||||
"Timpul de expirare pentru membrii setului de liste de blocare adăugate "
|
||||
"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"
|
||||
msgstr "Selecția Feed"
|
||||
|
||||
|
@ -305,7 +301,7 @@ msgstr "Selecția Feed"
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr "Setări generale"
|
||||
|
||||
|
@ -313,11 +309,11 @@ msgstr "Setări generale"
|
|||
msgid "Grant access to LuCI app 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"
|
||||
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"
|
||||
msgstr "Cea mai mare prioritate"
|
||||
|
||||
|
@ -329,15 +325,15 @@ msgstr "Căutare IP"
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"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 "
|
||||
"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"
|
||||
msgstr "Informație"
|
||||
|
||||
|
@ -353,45 +349,45 @@ msgstr "Informație"
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
"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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr "Nivel Bun"
|
||||
|
||||
|
@ -470,18 +474,18 @@ msgstr "Nu există încă jurnale de firewall legate de banIP!"
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
"Numărul de încercări de conectare eșuate ale aceluiași IP din jurnal înainte "
|
||||
"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 ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -493,7 +497,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
"Analizează numai ultimul număr declarat de intrări de jurnal pentru "
|
||||
|
@ -503,12 +507,12 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
msgstr ""
|
||||
"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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -520,23 +524,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
"Restricționați accesul la internet de la/către un număr mic de IP-uri "
|
||||
|
@ -547,11 +551,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr "Informații despre cursă"
|
||||
|
||||
|
@ -563,23 +567,23 @@ msgstr "Căutați"
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
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."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr "Adresa expeditorului pentru e-mailurile de notificare banIP."
|
||||
|
||||
|
@ -588,11 +592,15 @@ msgstr "Adresa expeditorului pentru e-mailurile de notificare banIP."
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr "Setați Dimensiunea Divizată"
|
||||
|
||||
|
@ -608,7 +616,7 @@ msgstr "Setați Survey..."
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
|
@ -616,25 +624,33 @@ msgstr ""
|
|||
"Setează prioritatea lanțului nft în cadrul tabelului banIP. Vă rugăm să "
|
||||
"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"
|
||||
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."
|
||||
msgstr ""
|
||||
"Împărțiți încărcarea setului extern după fiecare n membri pentru a economisi "
|
||||
"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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Stop"
|
||||
|
||||
|
@ -642,19 +658,17 @@ msgstr "Stop"
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr "Informații de sistem"
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
msgstr "Directorul țintă pentru fișierele de raport legate de IPSet."
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
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
|
||||
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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
|
@ -672,7 +686,7 @@ msgstr ""
|
|||
"Termenii de jurnal / expresiile regulate implicite filtrează traficul ssh, "
|
||||
"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."
|
||||
msgstr ""
|
||||
"Prioritatea selectată va fi utilizată pentru procesarea în fundal a banIP."
|
||||
|
@ -723,11 +737,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr "Intârzierea declanșării"
|
||||
|
||||
|
@ -736,11 +750,11 @@ msgstr "Intârzierea declanșării"
|
|||
msgid "Unable to save modifications: %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"
|
||||
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"
|
||||
msgstr "Versiune"
|
||||
|
||||
|
@ -748,7 +762,7 @@ msgstr "Versiune"
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr "Chain WAN-Forward"
|
||||
|
||||
|
@ -756,10 +770,18 @@ msgstr "Chain WAN-Forward"
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr "adăugat automat la allowlist astăzi"
|
||||
|
@ -772,6 +794,53 @@ msgstr "auto-adăugat la lista de blocare astăzi"
|
|||
msgid "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 ""
|
||||
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
|
||||
#~ "take effect."
|
||||
|
|
|
@ -15,92 +15,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -110,43 +106,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -156,7 +152,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -165,11 +161,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -182,59 +178,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Тема"
|
||||
|
||||
|
@ -246,7 +242,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -254,31 +250,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -286,7 +282,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr "Общие настройки"
|
||||
|
||||
|
@ -294,11 +290,11 @@ msgstr "Общие настройки"
|
|||
msgid "Grant access to LuCI app 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"
|
||||
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"
|
||||
msgstr "Наивысший приоритет"
|
||||
|
||||
|
@ -310,21 +306,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr "Информация"
|
||||
|
||||
|
@ -332,45 +328,45 @@ msgstr "Информация"
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:285
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:289
|
||||
#, fuzzy
|
||||
msgid "List of available network interfaces to trigger the banIP start."
|
||||
msgstr "Список доступных сетевых интерфейсов запускающих banIP."
|
||||
|
@ -379,60 +375,68 @@ msgstr "Список доступных сетевых интерфейсов з
|
|||
msgid "List the elements of a specific banIP-related Set."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -449,16 +453,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -468,7 +472,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -476,11 +480,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -490,23 +494,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -515,11 +519,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -531,23 +535,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -556,11 +560,15 @@ msgstr ""
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -576,29 +584,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -606,16 +622,16 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -670,11 +686,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr "Задержка запуска"
|
||||
|
||||
|
@ -683,11 +699,11 @@ msgstr "Задержка запуска"
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -695,7 +711,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -703,10 +719,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -719,6 +743,45 @@ msgstr ""
|
|||
msgid "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 ""
|
||||
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
|
||||
#~ "take effect."
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,43 +105,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,7 +151,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -164,11 +160,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,59 +177,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -245,7 +241,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -253,31 +249,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -285,7 +281,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -293,11 +289,11 @@ msgstr ""
|
|||
msgid "Grant access to LuCI app banIP"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -309,21 +305,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -331,45 +327,45 @@ msgstr ""
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -377,60 +373,68 @@ msgstr ""
|
|||
msgid "List the elements of a specific banIP-related Set."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -447,16 +451,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -466,7 +470,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -474,11 +478,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -488,23 +492,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -513,11 +517,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -529,23 +533,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -554,11 +558,15 @@ msgstr ""
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -574,29 +582,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -604,16 +620,16 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -668,11 +684,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -681,11 +697,11 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -693,7 +709,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -701,10 +717,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -717,6 +741,42 @@ msgstr ""
|
|||
msgid "banIP"
|
||||
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"
|
||||
#~ msgstr "Aktívne zdroje"
|
||||
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,43 +105,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,7 +151,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -164,11 +160,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,59 +177,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "E-postämne"
|
||||
|
||||
|
@ -245,7 +241,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -253,31 +249,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -285,7 +281,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr "Generella inställningar"
|
||||
|
||||
|
@ -293,11 +289,11 @@ msgstr "Generella inställningar"
|
|||
msgid "Grant access to LuCI app banIP"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -309,21 +305,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -331,45 +327,45 @@ msgstr ""
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -377,60 +373,68 @@ msgstr ""
|
|||
msgid "List the elements of a specific banIP-related Set."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -447,16 +451,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -466,7 +470,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -474,11 +478,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -488,23 +492,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -513,11 +517,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -529,23 +533,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -554,11 +558,15 @@ msgstr ""
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -574,29 +582,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -604,16 +620,16 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -668,11 +684,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -681,11 +697,11 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -693,7 +709,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -701,10 +717,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -717,6 +741,45 @@ msgstr ""
|
|||
msgid "banIP"
|
||||
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)"
|
||||
#~ msgstr "-m limit --limit 2/sek (standard)"
|
||||
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,43 +105,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,7 +151,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -164,11 +160,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,59 +177,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -245,7 +241,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -253,31 +249,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -285,7 +281,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -293,11 +289,11 @@ msgstr ""
|
|||
msgid "Grant access to LuCI app banIP"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -309,21 +305,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -331,45 +327,45 @@ msgstr ""
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -377,60 +373,68 @@ msgstr ""
|
|||
msgid "List the elements of a specific banIP-related Set."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -447,16 +451,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -466,7 +470,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -474,11 +478,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -488,23 +492,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -513,11 +517,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -529,23 +533,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -554,11 +558,15 @@ msgstr ""
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -574,29 +582,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -604,16 +620,16 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -668,11 +684,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -681,11 +697,11 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -693,7 +709,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -701,10 +717,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -717,6 +741,45 @@ msgstr ""
|
|||
msgid "banIP"
|
||||
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"
|
||||
#~ msgstr "Hatua"
|
||||
|
||||
|
|
|
@ -5,92 +5,88 @@ msgstr "Content-Type: text/plain; charset=UTF-8"
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -100,43 +96,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -146,7 +142,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,11 +151,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -172,59 +168,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -236,7 +232,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -244,31 +240,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -276,7 +272,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -284,11 +280,11 @@ msgstr ""
|
|||
msgid "Grant access to LuCI app banIP"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -300,21 +296,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -322,45 +318,45 @@ msgstr ""
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -368,60 +364,68 @@ msgstr ""
|
|||
msgid "List the elements of a specific banIP-related Set."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -438,16 +442,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -457,7 +461,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -465,11 +469,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -479,23 +483,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -504,11 +508,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -520,23 +524,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -545,11 +549,15 @@ msgstr ""
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -565,29 +573,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -595,16 +611,16 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -659,11 +675,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -672,11 +688,11 @@ msgstr ""
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -684,7 +700,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -692,10 +708,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -707,3 +731,39 @@ msgstr ""
|
|||
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:3
|
||||
msgid "banIP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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 ""
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,43 +105,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,7 +151,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -164,11 +160,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,59 +177,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 ""
|
||||
"Deduplicate IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "E-Posta Konusu"
|
||||
|
||||
|
@ -245,7 +241,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -253,31 +249,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -285,7 +281,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr "Genel Ayarlar"
|
||||
|
||||
|
@ -293,11 +289,11 @@ msgstr "Genel Ayarlar"
|
|||
msgid "Grant access to LuCI app banIP"
|
||||
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"
|
||||
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"
|
||||
msgstr "En yüksek öncelik"
|
||||
|
||||
|
@ -309,21 +305,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr "Bilgi"
|
||||
|
||||
|
@ -331,45 +327,45 @@ msgstr "Bilgi"
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -447,16 +451,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -466,7 +470,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
"Şüpheli olaylar için yalnızca son belirtilen günlük girişi sayısını "
|
||||
|
@ -476,11 +480,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -490,23 +494,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -515,11 +519,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr "Çalıştırma Bilgileri"
|
||||
|
||||
|
@ -531,23 +535,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
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"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -576,29 +584,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -606,17 +622,17 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
msgstr "IPSet ile ilgili rapor dosyaları için hedef dizin."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
msgstr "Sıkıştırılmış kaynak listesi yedeklemeleri için hedef dizin."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
|
||||
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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -670,11 +686,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr "Tetikleme Gecikmesi"
|
||||
|
||||
|
@ -683,11 +699,11 @@ msgstr "Tetikleme Gecikmesi"
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -695,7 +711,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -703,10 +719,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -719,6 +743,51 @@ msgstr ""
|
|||
msgid "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 ""
|
||||
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
|
||||
#~ "take effect."
|
||||
|
|
|
@ -15,92 +15,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -110,43 +106,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -156,7 +152,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -165,11 +161,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -182,59 +178,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "Тема"
|
||||
|
||||
|
@ -246,7 +242,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -254,31 +250,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -286,7 +282,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr "Загальні налаштування"
|
||||
|
||||
|
@ -294,11 +290,11 @@ msgstr "Загальні налаштування"
|
|||
msgid "Grant access to LuCI app banIP"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -310,21 +306,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -332,45 +328,45 @@ msgstr ""
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -378,60 +374,68 @@ msgstr ""
|
|||
msgid "List the elements of a specific banIP-related Set."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -448,16 +452,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -467,7 +471,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -475,11 +479,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -489,23 +493,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -514,11 +518,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -530,23 +534,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -555,11 +559,15 @@ msgstr ""
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -575,29 +583,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -605,16 +621,16 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -669,11 +685,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr "Затримка запуску"
|
||||
|
||||
|
@ -682,11 +698,11 @@ msgstr "Затримка запуску"
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -694,7 +710,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -702,10 +718,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -718,6 +742,42 @@ msgstr ""
|
|||
msgid "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"
|
||||
#~ msgstr "Не вдалося зберегти зміни: %s"
|
||||
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,43 +105,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,7 +151,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -164,11 +160,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,59 +177,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -245,7 +241,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -253,31 +249,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -285,7 +281,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -293,11 +289,11 @@ msgstr ""
|
|||
msgid "Grant access to LuCI app banIP"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -309,21 +305,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -331,45 +327,45 @@ msgstr ""
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -377,60 +373,68 @@ msgstr ""
|
|||
msgid "List the elements of a specific banIP-related Set."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -447,16 +451,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -466,7 +470,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -474,11 +478,11 @@ msgstr ""
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -488,23 +492,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -513,11 +517,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -529,23 +533,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -554,11 +558,15 @@ msgstr ""
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -574,29 +582,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -604,16 +620,16 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: 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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -668,11 +684,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr "Kích hoạt độ trễ"
|
||||
|
||||
|
@ -681,12 +697,12 @@ msgstr "Kích hoạt độ trễ"
|
|||
msgid "Unable to save modifications: %s"
|
||||
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
|
||||
msgid "Verbose Debug Logging"
|
||||
msgstr "Nhật ký gỡ lỗi khởi động"
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:148
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:152
|
||||
msgid "Version"
|
||||
msgstr ""
|
||||
|
||||
|
@ -694,7 +710,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -702,10 +718,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -718,6 +742,42 @@ msgstr ""
|
|||
msgid "banIP"
|
||||
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"
|
||||
#~ msgstr "Nâng cao"
|
||||
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,43 +105,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,7 +151,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -164,11 +160,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,59 +177,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "电子邮件主题"
|
||||
|
||||
|
@ -245,7 +241,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -253,31 +249,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -285,7 +281,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr "常规设置"
|
||||
|
||||
|
@ -293,11 +289,11 @@ msgstr "常规设置"
|
|||
msgid "Grant access to LuCI app 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"
|
||||
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"
|
||||
msgstr "最高优先级"
|
||||
|
||||
|
@ -309,21 +305,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr "信息"
|
||||
|
||||
|
@ -331,45 +327,45 @@ msgstr "信息"
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr "触发 banIP 启动的可用网络接口列表。"
|
||||
|
||||
|
@ -377,60 +373,68 @@ msgstr "触发 banIP 启动的可用网络接口列表。"
|
|||
msgid "List the elements of a specific banIP-related Set."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -447,16 +451,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -466,7 +470,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr "仅解析最后声明的可疑事件的日志条目数量。"
|
||||
|
||||
|
@ -474,11 +478,11 @@ msgstr "仅解析最后声明的可疑事件的日志条目数量。"
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -488,23 +492,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -513,11 +517,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr "运行信息"
|
||||
|
||||
|
@ -529,23 +533,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr "banIP 通知邮件的发送地址。"
|
||||
|
||||
|
@ -554,11 +558,15 @@ msgstr "banIP 通知邮件的发送地址。"
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -574,29 +582,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -604,17 +620,17 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
msgstr "IPSet 相关的报告文件的目标目录。"
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
msgstr "压缩的源列表备份的目标目录。"
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
|
||||
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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -668,11 +684,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr "触发延时"
|
||||
|
||||
|
@ -681,11 +697,11 @@ msgstr "触发延时"
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -693,7 +709,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -701,10 +717,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -717,6 +741,51 @@ msgstr ""
|
|||
msgid "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 ""
|
||||
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
|
||||
#~ "take effect."
|
||||
|
|
|
@ -14,92 +14,88 @@ msgstr ""
|
|||
msgid "-- Set Selection --"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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
|
||||
msgid "Active Subnets"
|
||||
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 ""
|
||||
"Additional trigger delay in seconds before banIP processing actually starts."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -109,43 +105,43 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -155,7 +151,7 @@ msgid ""
|
|||
"effect."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -164,11 +160,11 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -181,59 +177,59 @@ msgid ""
|
|||
"documentation</a>"
|
||||
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"
|
||||
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 IP addresses across all active sets and and tidy up the local "
|
||||
"blocklist."
|
||||
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"
|
||||
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 ""
|
||||
"Detect relevant network devices, interfaces, subnets, protocols and "
|
||||
"utilities automatically."
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr "電郵主旨"
|
||||
|
||||
|
@ -245,7 +241,7 @@ msgstr ""
|
|||
msgid "Edit Blocklist"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -253,31 +249,31 @@ msgstr ""
|
|||
msgid "Elements"
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -285,7 +281,7 @@ msgstr ""
|
|||
msgid "Firewall Log"
|
||||
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"
|
||||
msgstr "一般設定"
|
||||
|
||||
|
@ -293,11 +289,11 @@ msgstr "一般設定"
|
|||
msgid "Grant access to LuCI app 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"
|
||||
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"
|
||||
msgstr "最高優先順序"
|
||||
|
||||
|
@ -309,21 +305,21 @@ msgstr ""
|
|||
msgid "IP Search..."
|
||||
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"
|
||||
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"
|
||||
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 ""
|
||||
"Increase the maximal number of open files, e.g. to handle the amount of "
|
||||
"temporary split files while loading the sets."
|
||||
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"
|
||||
msgstr "資訊"
|
||||
|
||||
|
@ -331,45 +327,45 @@ msgstr "資訊"
|
|||
msgid "LAN-Forward (packets)"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
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 ""
|
||||
"List Set elements in the report, disable this to speed up the report "
|
||||
"significantly."
|
||||
"List Set elements in the status and report, disable this to reduce the CPU "
|
||||
"load."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js: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."
|
||||
msgstr "觸發 banIP 啟動的可用網路介面列表。"
|
||||
|
||||
|
@ -377,60 +373,68 @@ msgstr "觸發 banIP 啟動的可用網路介面列表。"
|
|||
msgid "List the elements of a specific banIP-related Set."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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"
|
||||
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"
|
||||
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:263
|
||||
#: 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:267
|
||||
msgid "Network Interfaces"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -447,16 +451,16 @@ msgstr ""
|
|||
msgid "No banIP related processing logs yet!"
|
||||
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)"
|
||||
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 ""
|
||||
"Number of failed login attempts of the same IP in the log before blocking."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:280
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:284
|
||||
msgid ""
|
||||
"Override the pre-configured download options for the selected download "
|
||||
"utility."
|
||||
|
@ -466,7 +470,7 @@ msgstr ""
|
|||
msgid "Overview"
|
||||
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."
|
||||
msgstr "僅解析最後宣告的可疑事件的日誌項目數量。"
|
||||
|
||||
|
@ -474,11 +478,11 @@ msgstr "僅解析最後宣告的可疑事件的日誌項目數量。"
|
|||
msgid "Processing Log"
|
||||
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."
|
||||
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 ""
|
||||
"Receiver address for banIP notification E-Mails, this information is "
|
||||
"required to enable E-Mail functionality."
|
||||
|
@ -488,23 +492,23 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -513,11 +517,11 @@ msgstr ""
|
|||
msgid "Result"
|
||||
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"
|
||||
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"
|
||||
msgstr "執行資訊"
|
||||
|
||||
|
@ -529,23 +533,23 @@ msgstr ""
|
|||
msgid "Search the banIP-related Sets for a specific IP."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:275
|
||||
msgid "Select one of the pre-configured download utilities."
|
||||
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)."
|
||||
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)."
|
||||
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)."
|
||||
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."
|
||||
msgstr "banIP 通知郵件的傳送位址。"
|
||||
|
||||
|
@ -554,11 +558,15 @@ msgstr "banIP 通知郵件的傳送位址。"
|
|||
msgid "Set"
|
||||
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
|
||||
msgid "Set Reporting"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -574,29 +582,37 @@ msgstr ""
|
|||
msgid "Set details"
|
||||
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 ""
|
||||
"Set the nft chain priority within the banIP table. Please note: lower values "
|
||||
"means higher priority."
|
||||
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"
|
||||
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."
|
||||
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"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -604,17 +620,17 @@ msgstr ""
|
|||
msgid "Survey"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for IPSet related report files."
|
||||
msgstr "IPSet 相關的報告檔案的目的目錄。"
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:365
|
||||
msgid "Target directory for banIP-related report files."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:357
|
||||
msgid "Target directory for compressed source list backups."
|
||||
msgstr "壓縮的來源列表備份的目的目錄。"
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
|
||||
msgid "Target directory for compressed feed backups."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:25
|
||||
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."
|
||||
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 ""
|
||||
"The default log terms / regular expressions are filtering suspicious ssh, "
|
||||
"LuCI, nginx and asterisk traffic."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
|
@ -668,11 +684,11 @@ msgstr ""
|
|||
msgid "Timestamp"
|
||||
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."
|
||||
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"
|
||||
msgstr "觸發延遲"
|
||||
|
||||
|
@ -681,11 +697,11 @@ msgstr "觸發延遲"
|
|||
msgid "Unable to save modifications: %s"
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -693,7 +709,7 @@ msgstr ""
|
|||
msgid "WAN-Forward (packets)"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
|
@ -701,10 +717,18 @@ msgstr ""
|
|||
msgid "WAN-Input (packets)"
|
||||
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"
|
||||
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
|
||||
msgid "auto-added to allowlist today"
|
||||
msgstr ""
|
||||
|
@ -717,6 +741,51 @@ msgstr ""
|
|||
msgid "banIP"
|
||||
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 ""
|
||||
#~ "Blacklist changes have been saved. Refresh your banIP lists that changes "
|
||||
#~ "take effect."
|
||||
|
|
Loading…
Reference in a new issue